gongchunyi
3 天以前 e8344a2b6edeb48c76ceceb19fbe3d83bcb85731
src/main/java/com/ruoyi/compensationperformance/mapper/CompensationPerformanceMapper.java
@@ -6,6 +6,8 @@
import com.ruoyi.compensationperformance.pojo.CompensationPerformance;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * @author :yys
 * @date : 2025/8/8 9:54
@@ -15,9 +17,17 @@
    /**
     * 分页查询
     *
     * @param page
     * @param compensationPerformance
     * @return
     * @param page       分页
     * @param staffName  员工姓名
     * @param payDateStr 薪资日期
     * @return 查询的人员薪资信息
     */
    IPage<CompensationPerformance> listPage(Page page,@Param("req") CompensationPerformance compensationPerformance);
    IPage<CompensationPerformance> listPage(Page page, @Param("staffName") String staffName, @Param("payDateStr") String payDateStr);
    /**
     * 导出人员薪资
     *
     * @return 人员薪资信息
     */
    List<CompensationPerformance> exportList();
}