Commit b53f7b3e authored by fangxinjiang's avatar fangxinjiang

项目规则配置-代码优化-fxj

parent dbc8e587
......@@ -81,6 +81,8 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
public static final String itemsLabel = "label,description,disable";
public static final String itemsLabelRepeat = "同一项目岗位名称不可重复";
/**
* 项目配置表主表简单分页查询
* @param tAutoMainRel 项目配置表主表
......@@ -270,7 +272,7 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
Set<String> repeatItems = new HashSet<>();
for (SysAutoDictItem item:autoDictItems) {
if (Common.isNotNull(repeatItems.contains(item.getLabel()))) {
return R.failed("同一项目岗位名称不可重复");
return R.failed(itemsLabelRepeat);
}
}
//新增主表
......@@ -385,7 +387,7 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
if (Common.isNotNull(repeatItems)) {
checkItem = repeatItems.get(item.getLabel());
if (null != checkItem && item.getLabel().equals(checkItem.getLabel())){
return R.failed("同一项目岗位名称不可重复");
return R.failed(itemsLabelRepeat);
}
repeatItems.put(item.getLabel(),item);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment