package com.artfess.cqlt.dao; import com.artfess.cqlt.model.QfFinancePlD; import com.artfess.cqlt.model.QfHrPersonD; import com.artfess.cqlt.model.QfHrPersonM; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 人资--人员数据主表 Mapper 接口 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-02-27 */ public interface QfHrPersonMDao extends BaseMapper { List historyList(@Param("month") Integer month, @Param("fillYear") Integer fillYear); }