| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author :yys |
| | | * @date : 2025/8/8 9:55 |
| | |
| | | |
| | | |
| | | @Override |
| | | public IPage<CompensationPerformance> listPage(Page page, CompensationPerformance compensationPerformance) { |
| | | IPage<CompensationPerformance> compensationPerformanceIPage = compensationPerformanceMapper.listPage(page, compensationPerformance); |
| | | return compensationPerformanceIPage; |
| | | public IPage<CompensationPerformance> listPage(Page page, String staffName, String payDateStr) { |
| | | return compensationPerformanceMapper.listPage(page, staffName, payDateStr); |
| | | } |
| | | |
| | | @Override |
| | | public List<CompensationPerformance> exportList() { |
| | | return compensationPerformanceMapper.exportList(); |
| | | } |
| | | } |