update 删除标识
This commit is contained in:
+2
-2
@@ -70,7 +70,7 @@ public class ILawsTagServiceImpl extends ServiceImpl<LawsTagMapper, LawsTag> imp
|
||||
//查询展示顺序相同的
|
||||
QueryWrapper<LawsTag> queryWrapper= new QueryWrapper<>();
|
||||
queryWrapper.eq("is_model", lawsTag.getIsModel())
|
||||
.eq("is_delete",CommonConstant.DEL_FLAG_0)
|
||||
.eq("del_flag",CommonConstant.DEL_FLAG_0)
|
||||
.orderByAsc("order_num");
|
||||
queryWrapper.eq("order_num", inputOrderNum);
|
||||
Integer orderNumCount = lawsTagMapper.selectCount(queryWrapper);
|
||||
@@ -79,7 +79,7 @@ public class ILawsTagServiceImpl extends ServiceImpl<LawsTagMapper, LawsTag> imp
|
||||
QueryWrapper<LawsTag> orderNumQueryWrapper = new QueryWrapper<>();
|
||||
orderNumQueryWrapper.ge("order_num", inputOrderNum)
|
||||
.eq("is_model", lawsTag.getIsModel())
|
||||
.eq("is_delete", CommonConstant.DEL_FLAG_0)
|
||||
.eq("del_flag", CommonConstant.DEL_FLAG_0)
|
||||
.orderByAsc("order_num");
|
||||
List<LawsTag> geOrderNumList = list(orderNumQueryWrapper);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user