| | |
| | | package doumeemes.dao.business; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import doumeemes.dao.business.model.SalaryParam; |
| | | import doumeemes.dao.business.vo.SalaryParamVO; |
| | | import doumeemes.dao.ext.dto.SalaryParamDTO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author 江蹄蹄 |
| | | * @date 2023/08/11 15:29 |
| | | */ |
| | | public interface SalaryParamMapper extends BaseMapper<SalaryParam> { |
| | | |
| | | |
| | | IPage<SalaryParamVO> selectPage(IPage<SalaryParam> page, @Param("model") SalaryParamDTO model); |
| | | |
| | | } |