yuan
2026-04-24 6121eaa7f8df0b8bf46d92d36e96991a6f4d23f1
src/main/java/com/ruoyi/compensationperformance/service/impl/CompensationPerformanceServiceImpl.java
@@ -6,9 +6,11 @@
import com.ruoyi.compensationperformance.mapper.CompensationPerformanceMapper;
import com.ruoyi.compensationperformance.pojo.CompensationPerformance;
import com.ruoyi.compensationperformance.service.CompensationPerformanceService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
 * @author :yys
@@ -16,10 +18,10 @@
 */
@Service
@Slf4j
@RequiredArgsConstructor
public class CompensationPerformanceServiceImpl extends ServiceImpl<CompensationPerformanceMapper, CompensationPerformance> implements CompensationPerformanceService {
    @Autowired
    private CompensationPerformanceMapper compensationPerformanceMapper;
    private final CompensationPerformanceMapper compensationPerformanceMapper;
    @Override
@@ -27,4 +29,8 @@
        return compensationPerformanceMapper.listPage(page, staffName, payDateStr);
    }
    @Override
    public List<CompensationPerformance> exportList() {
        return compensationPerformanceMapper.exportList();
    }
}