添加guildMemberId
This commit is contained in:
@@ -39,7 +39,7 @@ public class GameUsdAdminService {
|
||||
@Autowired
|
||||
private GameDiamondSalaryService gameDiamondSalaryService;
|
||||
|
||||
public BusiResult<PageResult<GameSalaryDetailVo>> detail(Integer partitionId, Long erbanNo, Integer paramGuildId,
|
||||
public BusiResult<PageResult<GameSalaryDetailVo>> detail(Integer partitionId, Long erbanNo, Integer paramGuildId, Long guildMemberId,
|
||||
Long ownerErbanNo, String cycleDate, Integer pageNo, Integer pageSize) {
|
||||
if (partitionId == null) {
|
||||
throw new AdminServiceException("分区不能为空");
|
||||
@@ -84,6 +84,7 @@ public class GameUsdAdminService {
|
||||
wrapper.eq(guildId != null, GameDiamondStatDay::getGuildId, guildId)
|
||||
.eq(StringUtils.isNotEmpty(cycleDate), GameDiamondStatDay::getCycleDate, cycleDate)
|
||||
.eq(GameDiamondStatDay::getPartitionId, partitionId)
|
||||
.eq(guildMemberId != null, GameDiamondStatDay::getGuildMemberId, guildMemberId)
|
||||
.eq(uid != null, GameDiamondStatDay::getUid, uid);
|
||||
Page<GameDiamondStatDay> statDays = gameDiamondStatDayService.page(page, wrapper);
|
||||
List<GameSalaryDetailVo> resultList = new ArrayList<>();
|
||||
|
@@ -17,8 +17,8 @@ public class GameUsdDetailController {
|
||||
private GameUsdAdminService gameUsdAdminService;
|
||||
|
||||
@GetMapping("/detail")
|
||||
public BusiResult<PageResult<GameSalaryDetailVo>> detail(Integer partitionId, Long erbanNo, Integer guildId,
|
||||
public BusiResult<PageResult<GameSalaryDetailVo>> detail(Integer partitionId, Long erbanNo, Integer guildId, Long guildMemberId,
|
||||
Long ownerErbanNo, String cycleDate, Integer pageNo, Integer pageSize) {
|
||||
return gameUsdAdminService.detail(partitionId, erbanNo, guildId, ownerErbanNo, cycleDate, pageNo, pageSize);
|
||||
return gameUsdAdminService.detail(partitionId, erbanNo, guildId, ownerErbanNo, guildMemberId, cycleDate, pageNo, pageSize);
|
||||
}
|
||||
}
|
||||
|
@@ -6,6 +6,8 @@ import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class GameSalaryDetailVo {
|
||||
private Long guildMemberId;
|
||||
|
||||
private Integer partitionId;
|
||||
|
||||
private String partitionDesc;
|
||||
|
Reference in New Issue
Block a user