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
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.mapper.EntityWrapper;
| import com.stylefeng.guns.modular.system.model.TAppUser;
| import com.baomidou.mybatisplus.service.IService;
| import org.springframework.ui.Model;
|
| /**
| * <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);
| }
|
|