| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.stylefeng.guns.modular.system.controller.resp.TAppUserResp; |
| | | import com.stylefeng.guns.modular.system.model.TAppUser; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import org.springframework.ui.Model; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @return |
| | | */ |
| | | EntityWrapper<TAppUser> getUserListWrapper(String createTime, String nickname, String phone, Integer id, Integer status); |
| | | |
| | | /** |
| | | * 用户异常列表封装返回数据 |
| | | * @param tAppUsers |
| | | * @return |
| | | */ |
| | | List<TAppUserResp> getTAppUserResp(List<TAppUser> tAppUsers); |
| | | |
| | | |
| | | } |