feat(mhzc): 在用户 service 中接入 listUserByQy 分页查询
This commit is contained in:
parent
18f3f7895a
commit
214ec54c4c
@ -27,6 +27,8 @@ public interface TxwMhzcYhxxbService extends IService<TxwMhzcYhxxbDO> {
|
||||
|
||||
Page<UserVO> getAllUser(UserReqVO reqVO);
|
||||
|
||||
Page<UserQyVO> listUserByQy(UserQyReqVO reqVO);
|
||||
|
||||
List<String> getAllUserId();
|
||||
|
||||
Integer lockUser(UserLockVO infoVO);
|
||||
|
||||
@ -14,6 +14,7 @@ import javax.annotation.Resource;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.css.ggzc.framework.common.pojo.CommonResult;
|
||||
@ -29,6 +30,8 @@ import com.css.txw.mhzc.pojo.domain.TxwMhzcYhqygxbDO;
|
||||
import com.css.txw.mhzc.pojo.domain.TxwMhzcYhxxbDO;
|
||||
import com.css.txw.mhzc.pojo.vo.SessionVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserLockVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserQyReqVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserQyVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserRegisterReqVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserReqVO;
|
||||
import com.css.txw.mhzc.pojo.vo.UserVO;
|
||||
@ -243,6 +246,12 @@ public class TxwMhzcYhxxbServiceImpl extends ServiceImpl<TxwMhzcYhxxbMapper, Txw
|
||||
return resPage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Page<UserQyVO> listUserByQy(UserQyReqVO reqVO) {
|
||||
Page<UserQyVO> page = new Page<>(reqVO.getPageNo(), reqVO.getPageSize());
|
||||
return yhxxbMapper.listUserByQy(page, reqVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String resetPassword(String yhuuid, String dlmm) {
|
||||
TxwMhzcYhxxbDO yhxxbDO = new TxwMhzcYhxxbDO();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user