| | |
| | | import com.ruoyi.performance.dto.PerformanceShiftAddDto; |
| | | import com.ruoyi.performance.pojo.PerformanceShift; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | void performanceShiftUpdate(PerformanceShift performanceShift); |
| | | |
| | | List<Map<String, Object>> performanceShiftPageYear(String time, String userName, String laboratory); |
| | | |
| | | Map<Object, Object> exportToYearExcel(String time, String userName, String laboratory) throws Exception; |
| | | |
| | | Map<Object, Object> exportToMonthExcel(String time, String userName, String laboratory); |
| | | List<Map<String, Object>> performanceShiftPageYear(LocalDateTime time, String userName, String laboratory); |
| | | |
| | | boolean editAnnotationText(PerformanceShift performanceShift); |
| | | |
| | | void exportToExcel(LocalDateTime time, String userName, String laboratory, Boolean isMonth, HttpServletResponse response); |
| | | } |