Procházet zdrojové kódy

[脏数据引发会员导出不工作][修复]

release_toaliyun_real
Stormeye.Wu před 7 roky
rodič
revize
de373f90f6
2 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. +5
    -0
      mallinkAdmin/src/main/resources/application-prod.yml
  2. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java

+ 5
- 0
mallinkAdmin/src/main/resources/application-prod.yml Zobrazit soubor

@@ -33,6 +33,11 @@ spring:
max-wait: -1 max-wait: -1
min-idle: 0 min-idle: 0



fileUpload:
path: /home/test/images
server: http://202.165.179.86:8081/images
logging: logging:
level: level:
tk.mybatis: debug tk.mybatis: debug

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java Zobrazit soubor

@@ -205,7 +205,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService {
if (entity != null) { if (entity != null) {
if (entity.getTagId() != null) { if (entity.getTagId() != null) {
WxCUserTags uTag = wxCUserTagsMapper.selectByPrimaryKey(entity.getTagId()); WxCUserTags uTag = wxCUserTagsMapper.selectByPrimaryKey(entity.getTagId());
if (StringUtils.isNotBlank(uTag.getTags())) {
if (uTag != null && StringUtils.isNotBlank(uTag.getTags())) {
List<Long> ids = JSONObject.parseArray(uTag.getTags(), Long.class); List<Long> ids = JSONObject.parseArray(uTag.getTags(), Long.class);
if (!ids.isEmpty()) { if (!ids.isEmpty()) {
WxTags wxTagsQ = new WxTags(); WxTags wxTagsQ = new WxTags();


Načítá se…
Zrušit
Uložit