Explorar el Código

fix bug

release_toaliyun_real
xiaohanzi hace 5 años
padre
commit
6333c9061c
Se han modificado 2 ficheros con 4 adiciones y 1 borrados
  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 Ver fichero

@@ -385,7 +385,7 @@ public class WxCouponSendServiceImpl implements WxCouponSendService {
bRet = true; bRet = true;
} }
} catch (Exception e) { } 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 Ver fichero

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


Cargando…
Cancelar
Guardar