package com.stylefeng.guns.modular.system.dao; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TGroup; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.stylefeng.guns.modular.system.model.TGroupVo; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 分组 Mapper 接口 *

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