Explorar el Código

[授权][修改]:空指针问题

release^2
Stormeye Wu hace 6 años
padre
commit
418e2239f6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java Ver fichero

@@ -99,7 +99,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService {
record.setUpdateTime(curDate); record.setUpdateTime(curDate);
// 授权表 添加 // 授权表 添加
authorizerInfoMapper.insertSelective(record); authorizerInfoMapper.insertSelective(record);
if(appinfo.getType() != null) {
if(appinfo != null && appinfo.getType() != null) {
if (appinfo.getType().equals(EnumAppType.C.getCode()) || if (appinfo.getType().equals(EnumAppType.C.getCode()) ||
appinfo.getType().equals(EnumAppType.B.getCode())) { appinfo.getType().equals(EnumAppType.B.getCode())) {
// C/B 扩展配置表添加 // C/B 扩展配置表添加


Cargando…
Cancelar
Guardar