|
@@ -202,8 +202,17 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public Page<PitcherDataDayVO> getPitcherDataDay(PitcherDataDayDTO dto) {
|
|
public Page<PitcherDataDayVO> getPitcherDataDay(PitcherDataDayDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ }
|
|
|
|
+
|
|
//不传递时间,默认查询当天
|
|
//不传递时间,默认查询当天
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -211,7 +220,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
}
|
|
}
|
|
//创建查询条件
|
|
//创建查询条件
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
@@ -261,8 +270,17 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public PitcherDataDayTotalVO getPitcherDataDayTotal(PitcherDataDayTotalDTO dto) {
|
|
public PitcherDataDayTotalVO getPitcherDataDayTotal(PitcherDataDayTotalDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ }
|
|
|
|
+
|
|
//不传递时间,默认查询当天
|
|
//不传递时间,默认查询当天
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -270,7 +288,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
}
|
|
}
|
|
//创建查询条件
|
|
//创建查询条件
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
@@ -303,8 +321,16 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public Page<PitcherDataTotalVO> getPitcherDataTotal(PitcherDataTotalDTO dto) {
|
|
public Page<PitcherDataTotalVO> getPitcherDataTotal(PitcherDataTotalDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ }
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -395,8 +421,17 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public PitcherDataTotalSumVO getPitcherDataTotalSum(PitcherDataTotalSumDTO dto) {
|
|
public PitcherDataTotalSumVO getPitcherDataTotalSum(PitcherDataTotalSumDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ }
|
|
|
|
+
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -486,9 +521,19 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public Page<PitcherGameDataDayVO> getPitcherGameDataDay(PitcherGameDataDayDTO dto) {
|
|
public Page<PitcherGameDataDayVO> getPitcherGameDataDay(PitcherGameDataDayDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
- List<Long> gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ List<Long> gameIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? Collections.emptyList() : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ }
|
|
//不传递时间,默认查询当天
|
|
//不传递时间,默认查询当天
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -496,10 +541,10 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
}
|
|
}
|
|
//创建查询条件
|
|
//创建查询条件
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
- if (gameIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(gameIds)) {
|
|
cri.where().andInList("game_id", gameIds);
|
|
cri.where().andInList("game_id", gameIds);
|
|
}
|
|
}
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
@@ -556,9 +601,20 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public PitcherGameDataDayTotalVO getPitcherGameDataDayTotal(PitcherGameDataDayTotalDTO dto) {
|
|
public PitcherGameDataDayTotalVO getPitcherGameDataDayTotal(PitcherGameDataDayTotalDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
- List<Long> gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ List<Long> gameIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? Collections.emptyList() : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ }
|
|
|
|
+
|
|
//不传递时间,默认查询当天
|
|
//不传递时间,默认查询当天
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -566,10 +622,10 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
}
|
|
}
|
|
//创建查询条件
|
|
//创建查询条件
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
- if (gameIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(gameIds)) {
|
|
cri.where().andInList("game_id", gameIds);
|
|
cri.where().andInList("game_id", gameIds);
|
|
}
|
|
}
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
@@ -608,9 +664,19 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public Page<PitcherGameDataTotalVO> getPitcherGameDataTotal(PitcherGameDataTotalDTO dto) {
|
|
public Page<PitcherGameDataTotalVO> getPitcherGameDataTotal(PitcherGameDataTotalDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
- List<Long> gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ List<Long> gameIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? Collections.emptyList() : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ }
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -707,9 +773,19 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public PitcherGameDataTotalSumVO getPitcherGameDataTotalSum(PitcherGameDataTotalSumDTO dto) {
|
|
public PitcherGameDataTotalSumVO getPitcherGameDataTotalSum(PitcherGameDataTotalSumDTO dto) {
|
|
- com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
- List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
- List<Long> gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
|
|
+ if (StringUtils.isBlank(dto.getSourceSystem())) {
|
|
|
|
+ dto.setSourceSystem("ZX_ONE");
|
|
|
|
+ }
|
|
|
|
+ List<Long> userIds;
|
|
|
|
+ List<Long> gameIds;
|
|
|
|
+ if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
|
+ com.github.sd4324530.jtuple.Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo();
|
|
|
|
+ userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? poerInfo.second : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ } else {
|
|
|
|
+ userIds = dto.getPitcherId() == null ? Collections.emptyList() : Collections.singletonList(dto.getPitcherId());
|
|
|
|
+ gameIds = dto.getGameId() == null ? Collections.emptyList() : Collections.singletonList(Long.parseLong(dto.getGameId()));
|
|
|
|
+ }
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
//如果注册时间参数为空,默认设置查询当天数据
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
if (dto.getBeginDate() == null || dto.getEndDate() == null) {
|
|
dto.setBeginDate(LocalDate.now());
|
|
dto.setBeginDate(LocalDate.now());
|
|
@@ -1042,7 +1118,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
private Criteria myCri(List<Long> userIds, List<Long> gameIds, PitcherGameDataTotalDTO dto, String type, Boolean needGroupBy) {
|
|
private Criteria myCri(List<Long> userIds, List<Long> gameIds, PitcherGameDataTotalDTO dto, String type, Boolean needGroupBy) {
|
|
//根据传入的dto拼接查询参数
|
|
//根据传入的dto拼接查询参数
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
- if (gameIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(gameIds)) {
|
|
//拼接游戏id查询条件
|
|
//拼接游戏id查询条件
|
|
cri.where().andInList("game_id", gameIds);
|
|
cri.where().andInList("game_id", gameIds);
|
|
}
|
|
}
|
|
@@ -1058,7 +1134,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
//拼接SDK来源
|
|
//拼接SDK来源
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
}
|
|
}
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
//拼接投手ID
|
|
//拼接投手ID
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
@@ -1181,7 +1257,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
//拼接SDK来源
|
|
//拼接SDK来源
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
}
|
|
}
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
//拼接投手ID
|
|
//拼接投手ID
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
@@ -1219,7 +1295,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
//拼接SDK来源
|
|
//拼接SDK来源
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
}
|
|
}
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
//拼接投手ID
|
|
//拼接投手ID
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
cri.where().andInList("pitcher_id", userIds);
|
|
}
|
|
}
|
|
@@ -1249,7 +1325,7 @@ public class PitcherDataServiceImpl implements IPitcherDataService {
|
|
//拼接SDK来源
|
|
//拼接SDK来源
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
}
|
|
}
|
|
- if (userIds != null) {
|
|
|
|
|
|
+ if (CollectionUtils.isNotEmpty(userIds)) {
|
|
//拼接投手ID
|
|
//拼接投手ID
|
|
cri.where().andInList("user_zx_pitcher_id", userIds);
|
|
cri.where().andInList("user_zx_pitcher_id", userIds);
|
|
}
|
|
}
|