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);
|
|
|
}
|