maven
3 天以前 a5d406d38dd39a1078a208e3055d71e58c6444f3
src/main/java/com/ruoyi/compensationperformance/service/CompensationPerformanceService.java
@@ -5,6 +5,8 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.compensationperformance.pojo.CompensationPerformance;
import java.util.List;
/**
 * @author :yys
 * @date : 2025/8/8 9:55
@@ -14,9 +16,17 @@
    /**
     * 分页查询
     *
     * @param page
     * @param compensationPerformance
     * @param page       分页插件
     * @param staffName  员工姓名
     * @param payDateStr 薪资日期
     * @return
     */
    IPage<CompensationPerformance> listPage(Page page, CompensationPerformance compensationPerformance);
    IPage<CompensationPerformance> listPage(Page page, String staffName, String payDateStr);
    /**
     * 导出人员新增
     *
     * @return 人员薪资
     */
    List<CompensationPerformance> exportList();
}