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; /** *

* 服务类 *

* * @author stylefeng * @since 2023-01-09 */ public interface ITUserService extends IService { List getList(Page tUserVoPage, String name, Integer id,int companyId); TUserBasicInfo getBasicInfo(Integer tUserId); List getChildUser(Page tUserChildPage,Integer tUserId); List getCheckList(Page tUserVoPage, String name, Integer state); List groupList(Page groupVoPage, String name); List getInvoices(Page invoicesInfoPage, int userId); InvoicesVo getInvoicesFromNumber(Long number); }