|
@@ -85,25 +85,31 @@ public class RoleManageServiceImpl implements IRoleManageService {
|
|
|
criA.where().andEquals("is_change_game_type", dto.getIsChange());
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(dto.getWeChatCompany())) {
|
|
|
- criA.where().andLike("we_chat_company", dto.getWeChatCompany());
|
|
|
+
|
|
|
+ criA.where().andLike("add_corp_user_id", dto.getWeChatCompany());
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(dto.getWeChat())) {
|
|
|
- criA.where().andLike("we_chat", dto.getWeChat());
|
|
|
+
|
|
|
+ criA.where().andLike("user_wechat", dto.getWeChat());
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(dto.getPhone())) {
|
|
|
- criA.where().andEquals("phone", dto.getPhone());
|
|
|
+
|
|
|
+ criA.where().andEquals("user_phone", dto.getPhone());
|
|
|
}
|
|
|
if (dto.getGsId() != null) {
|
|
|
criA.where().andEquals("gs_id", dto.getGsId());
|
|
|
}
|
|
|
if (dto.getPitcherId() != null) {
|
|
|
- criA.where().andEquals("pitcher_id", dto.getPitcherId());
|
|
|
+
|
|
|
+ criA.where().andEquals("put_user_id", dto.getPitcherId());
|
|
|
}
|
|
|
if (dto.getOperatorId() != null) {
|
|
|
- criA.where().andEquals("operator_id", dto.getOperatorId());
|
|
|
+
|
|
|
+ criA.where().andEquals("oper_user_id", dto.getOperatorId());
|
|
|
}
|
|
|
if (dto.getCustomerServerId() != null) {
|
|
|
- criA.where().andEquals("customer_server_id", dto.getCustomerServerId());
|
|
|
+
|
|
|
+ criA.where().andEquals("customer_service_id", dto.getCustomerServerId());
|
|
|
}
|
|
|
|
|
|
Criteria criTodayAmount = Cnd.cri();
|