xiaohanzi 5 лет назад
Родитель
Сommit
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) {


Загрузка…
Отмена
Сохранить