|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import org.apache.commons.lang3.StringUtils; | 
|---|
|  |  |  | import org.apache.shiro.SecurityUtils; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.stereotype.Service; | 
|---|
|  |  |  | 
|---|
|  |  |  | .eq(ApproveParam::getTemplId,model.getId()) | 
|---|
|  |  |  | .orderByAsc(ApproveParam::getLevel) | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | for (ApproveParam approveParam :approveParamList) { | 
|---|
|  |  |  | if(StringUtils.isNotBlank(approveParam.getObjIds())){ | 
|---|
|  |  |  | approveParam.setMemberList(memberMapper.selectList(new QueryWrapper<Member>() | 
|---|
|  |  |  | .lambda().eq(Member::getIsdeleted,Constants.ZERO).in(Member::getId,approveParam.getObjIds().split(",")))); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | model.setParamList(approveParamList); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return model; | 
|---|