记得上下班打卡 | git大法好,push需谨慎

Commit 76bb80cb authored by 张国柄's avatar 张国柄

+admin.html:巡演券关联配置;

parent b8632594
...@@ -107,6 +107,9 @@ public class GoblinSelfExtagAdminController extends BaseController { ...@@ -107,6 +107,9 @@ public class GoblinSelfExtagAdminController extends BaseController {
LambdaQueryWrapper<GoblinSelfTag> queryWrapper = Wrappers.lambdaQuery(GoblinSelfTag.class); LambdaQueryWrapper<GoblinSelfTag> queryWrapper = Wrappers.lambdaQuery(GoblinSelfTag.class);
queryWrapper.eq(GoblinSelfTag::getDelFlg, "0"); queryWrapper.eq(GoblinSelfTag::getDelFlg, "0");
queryWrapper.eq(GoblinSelfTag::getTagBelong, "1"); queryWrapper.eq(GoblinSelfTag::getTagBelong, "1");
if ("5".equals(tagType)) {// AR标签类型时,类型内标签名重复校验
queryWrapper.eq(GoblinSelfTag::getTagType, tagType);
}
queryWrapper.eq(GoblinSelfTag::getTagName, tagName.trim()); queryWrapper.eq(GoblinSelfTag::getTagName, tagName.trim());
if (goblinSelfTagService.count(queryWrapper) > 0) { if (goblinSelfTagService.count(queryWrapper) > 0) {
return AjaxResult.warn("标签名称重复,请核实"); return AjaxResult.warn("标签名称重复,请核实");
......
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