增加用户分配功能和用户分配按钮功能

This commit is contained in:
季圣华
2021-04-27 23:33:08 +08:00
parent 1882d8cc3f
commit 62ed476d09
4 changed files with 24 additions and 15 deletions

View File

@@ -195,7 +195,7 @@ public class FunctionService {
public List<Function> findByIds(String functionsIds)throws Exception{
List<Long> idList = StringUtil.strToLongList(functionsIds);
FunctionExample example = new FunctionExample();
example.createCriteria().andEnabledEqualTo(true).andIdIn(idList)
example.createCriteria().andEnabledEqualTo(true).andIdIn(idList).andPushBtnIsNotNull().andPushBtnNotEqualTo("")
.andDeleteFlagNotEqualTo(BusinessConstants.DELETE_FLAG_DELETED);
example.setOrderByClause("Sort asc");
List<Function> list=null;