소스 검색

fix bug

release_toaliyun_real
xiaohanzi 5 년 전
부모
커밋
6333c9061c
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCouponSendServiceImpl.java
  2. +3
    -0
      mybatis-multi-tenancy/src/main/java/com/iformall/plugin/shard/plugin/ShardingSpherePlugin.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCouponSendServiceImpl.java 파일 보기

@@ -385,7 +385,7 @@ public class WxCouponSendServiceImpl implements WxCouponSendService {
bRet = true;
}
} catch (Exception e) {
logger.error(e.getMessage());
logger.error(e.getMessage(),e);
}




+ 3
- 0
mybatis-multi-tenancy/src/main/java/com/iformall/plugin/shard/plugin/ShardingSpherePlugin.java 파일 보기

@@ -216,6 +216,9 @@ public class ShardingSpherePlugin implements MyBatisPlus {
}
private String getField(String column) {
if (null == column) {
throw new RuntimeException("table sharinding error column is null");
}
String[] field = column.split("_");
String fieldName = "";
if (null != field && field.length > 0) {


불러오는 중...
취소
저장