协议配置审核方法参数名统一

This commit is contained in:
leijun
2019-04-17 09:55:11 +08:00
parent 7b27b457a2
commit 3acdae76d0
5 changed files with 16 additions and 16 deletions

View File

@@ -173,7 +173,7 @@ public class BgpCfgService extends CrudService<BgpCfgDao,CfgIndexInfo> {
if(isValid==1) {
entity.setIsAudit(1);
entity.setIsValid(1);
auditBgpCfg(entity, isValid,Constants.INSERT_ACTION);
auditBgpCfg(entity, entity.getIsAudit(),Constants.INSERT_ACTION);
}
}else{
@@ -240,7 +240,7 @@ public class BgpCfgService extends CrudService<BgpCfgDao,CfgIndexInfo> {
if(isValid==1) {
entity.setIsAudit(1);
entity.setIsValid(1);
auditBgpCfg(entity, isValid,Constants.UPDATE_ACTION);
auditBgpCfg(entity, entity.getIsAudit(),Constants.UPDATE_ACTION);
}
}
}