xuhy
2023-03-23 8a66f76e0b0af13ccdba14f1d38eed91139ca124
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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>
 * 用户基础信息 服务类
 * </p>
 *
 * @author stylefeng
 * @since 2023-02-14
 */
public interface ITAppUserService extends IService<TAppUser> {
 
    /**
     * 详情页面跳转
     * @param tAppUserId
     * @param model
     */
    void detail(Integer tAppUserId, Model model);
 
    /**
     * 封装用户列表查询wrapper
     * @param createTime
     * @param nickname
     * @param phone
     * @param id
     * @param status
     * @return
     */
    EntityWrapper<TAppUser> getUserListWrapper(String createTime, String nickname, String phone, Integer id, Integer status);
 
    /**
     * 用户异常列表封装返回数据
     * @param tAppUsers
     * @return
     */
    List<TAppUserResp> getTAppUserResp(List<TAppUser> tAppUsers);
 
 
}