jiaosong
2023-08-14 b6c8cfb873fdb34e2a78acf8ce189f77d50c4be9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.ext.dto.SalaryParamDTO;
 
/**
 * @author 江蹄蹄
 * @date 2023/08/11 15:29
 */
public interface SalaryParamMapper extends BaseMapper<SalaryParam> {
 
 
    IPage<SalaryParam> selectPage(IPage<SalaryParam> page, SalaryParamDTO model);
 
}