package com.stylefeng.guns.modular.system.service; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TGroup; import com.baomidou.mybatisplus.service.IService; import com.stylefeng.guns.modular.system.model.TGroupVo; import java.util.List; /** *

* 分组 服务类 *

* * @author stylefeng * @since 2022-12-30 */ public interface ITGroupService extends IService { List getList(Page tGroupVoPage, String name, Integer departmentId, Integer sales); }