liujie
2023-05-22 9f2315d92cc93f8f431805a10ea9ce3f79fa7eb2
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
package com.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.modular.system.model.*;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author stylefeng
 * @since 2023-01-09
 */
public interface ITUserService extends IService<TUser> {
 
    List<TUserVo> getList(Page<TUserVo> tUserVoPage, String name, Integer id,int companyId);
 
 
    TUserBasicInfo getBasicInfo(Integer tUserId);
 
 
    List<TUserChild> getChildUser(Page<TUserChild> tUserChildPage,Integer tUserId);
 
    List<TUserReviewVo> getCheckList(Page<TUserReviewVo> tUserVoPage, String name, Integer state);
 
    List<TGroupVo> groupList(Page<TGroupVo> groupVoPage, String name);
 
    List<InvoicesInfo> getInvoices(Page<InvoicesInfo> invoicesInfoPage, int userId);
 
    InvoicesVo getInvoicesFromNumber(Long number);
 
 
}