|
@ -5,6 +5,7 @@ import com.alibaba.fastjson.JSON; |
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
|
|
|
import com.epmet.commons.tools.constant.CustomerIdConstant; |
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
import com.epmet.commons.tools.constant.StrConstant; |
|
|
import com.epmet.commons.tools.constant.StrConstant; |
|
|
import com.epmet.commons.tools.enums.CollectUrlEnum; |
|
|
import com.epmet.commons.tools.enums.CollectUrlEnum; |
|
@ -147,7 +148,7 @@ public class NeighborHoodServiceImpl extends BaseServiceImpl<IcNeighborHoodDao,I |
|
|
*/ |
|
|
*/ |
|
|
private String createNeiQrcodeUrl(IcNeighborHoodEntity entity) throws Exception { |
|
|
private String createNeiQrcodeUrl(IcNeighborHoodEntity entity) throws Exception { |
|
|
// 市北区-智慧社区: 1623486671774978060 23.2月为了方便社区的同事们演示系统,新建的一个客户id
|
|
|
// 市北区-智慧社区: 1623486671774978060 23.2月为了方便社区的同事们演示系统,新建的一个客户id
|
|
|
if ("1623486671774978060".equals(entity.getCustomerId())) { |
|
|
if (CustomerIdConstant.SHIBEI_YANSHI.equals(entity.getCustomerId())||CustomerIdConstant.YT_CUSTOMER_ID.equals(entity.getCustomerId())) { |
|
|
return StrConstant.EPMETY_STR; |
|
|
return StrConstant.EPMETY_STR; |
|
|
} |
|
|
} |
|
|
if (null == entity) { |
|
|
if (null == entity) { |
|
@ -349,7 +350,7 @@ public class NeighborHoodServiceImpl extends BaseServiceImpl<IcNeighborHoodDao,I |
|
|
@Override |
|
|
@Override |
|
|
public Result createBatchNeiQrUrl(String customerId) { |
|
|
public Result createBatchNeiQrUrl(String customerId) { |
|
|
// 市北区-智慧社区: 1623486671774978060 23.2月为了方便社区的同事们演示系统,新建的一个客户id
|
|
|
// 市北区-智慧社区: 1623486671774978060 23.2月为了方便社区的同事们演示系统,新建的一个客户id
|
|
|
if ("1623486671774978060".equals(customerId)) { |
|
|
if (CustomerIdConstant.SHIBEI_YANSHI.equals(customerId) || CustomerIdConstant.YT_CUSTOMER_ID.equals(customerId)) { |
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
//查询该客户下没有二维码的小区
|
|
|
//查询该客户下没有二维码的小区
|
|
|