perf: 忽略ST的校验

iec104
huangfeng 1 year ago
parent 7f2e56e5a5
commit b1ffe0890d

@ -161,7 +161,7 @@ public class ParamBindServiceImpl implements ParamBindService {
List<IcdConfigTypeAtt> attList = attRepository.findByIcdConfigTypeId(type.getId());
List<String> msgList = new ArrayList<>();
for (IcdConfigTypeAtt att : attList) {
if (StringUtils.isBlank(att.getColName()) && att.containInst(inst.getInst())) {
if (StringUtils.isBlank(att.getColName()) && att.containInst(inst.getInst()) && att.getParam().startsWith("MX")) {
msgList.add(att.getDoName() + "该属性还未配置绑定字段");
} else {
// String paramindex = param + "$" + att.getParam();

Loading…
Cancel
Save