Commit 12490e9234acb1ee0e93b3946318611bfcddc116
1 parent
150d91a4
1.新增获取当天排班中变更过的排班数据接口
Showing
1 changed file
with
0 additions
and
3 deletions
src/main/java/com/bsth/server_rs/schedule/real/ScheduleRealService.java
| ... | ... | @@ -214,9 +214,6 @@ public class ScheduleRealService { |
| 214 | 214 | public List<ScheduleRealInfoDTO_JK> sch_jk4modify(@PathParam("company") String company, @PathParam("rq") String rq) { |
| 215 | 215 | DateTimeFormatter fmt = DateTimeFormat.forPattern("yyyyMMdd"); |
| 216 | 216 | DateTime dateTime = fmt.parseDateTime(rq); |
| 217 | - logger.error("--------------" + company); | |
| 218 | - logger.error("--------------" + rq); | |
| 219 | - logger.error("--------------" + timestamp); | |
| 220 | 217 | List<ScheduleRealInfoDTO_JK> result = ScheduleRealInfoDTO_JK.getMultiInstance(scheduleRealInfoRepository.findByDateAndCompany(dateTime.toString("yyyy-MM-dd"), company, new Date(timestamp))); |
| 221 | 218 | timestamp = System.currentTimeMillis(); |
| 222 | 219 | ... | ... |