|
@@ -131,6 +131,9 @@ public class ChannelMgrController extends BaseApiController {
|
|
|
queryWrapper.gt("t1.level", 0);
|
|
|
queryWrapper.likeRight(null != channel && StringUtils.isNotBlank(channel.getMobile()), "t1.mobile", channel.getMobile());
|
|
|
queryWrapper.likeRight(null != channel && StringUtils.isNotBlank(channel.getName()), "t1.name", channel.getName());
|
|
|
+ queryWrapper.eq(null != channel && null != channel.getProvinceId(), "t1.province_id", channel.getProvinceId());
|
|
|
+ queryWrapper.eq(null != channel && null != channel.getCityId(), "t1.city_id", channel.getCityId());
|
|
|
+ queryWrapper.eq(null != channel && null != channel.getAreaId(), "t1.area_id", channel.getAreaId());
|
|
|
queryWrapper.orderByAsc("t1.channel_id");
|
|
|
list = channelService.selectChannelVoList(queryWrapper);
|
|
|
if(null != list && list.size() > 0) {
|