|
@@ -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();
|
|
|
|