|
@@ -132,9 +132,17 @@ public class RoleManageServiceImpl implements IRoleManageService {
|
|
|
criA.where().andEquals("is_remove_game", dto.getIsRemoveGame());
|
|
|
}
|
|
|
if (dto.getIsRemoveGameForSystem() != null) {
|
|
|
- //是否退游
|
|
|
+ //是否退游(系统判定)
|
|
|
criA.where().andEquals("is_remove_game_for_system", dto.getIsRemoveGameForSystem());
|
|
|
}
|
|
|
+ if (dto.getIsWakeUp() != null) {
|
|
|
+ //是否唤醒
|
|
|
+ criA.where().andEquals("is_wake_up", dto.getIsWakeUp());
|
|
|
+ }
|
|
|
+ if (dto.getIsAddCorpWechat() != null) {
|
|
|
+ //是否添加企微
|
|
|
+ criA.where().andEquals("is_add_corp_wechat", dto.getIsAddCorpWechat());
|
|
|
+ }
|
|
|
//给充值时间查询条件
|
|
|
Criteria criTodayAmount = Cnd.cri();
|
|
|
//查询充值成功的
|