|
@@ -80,6 +80,19 @@ public class ItdmGongdanQuerenController extends JeecgController<ItdmGongdanDeta
|
|
|
return Result.OK(itdmGongdanDetailService.getByweituoId(weituoId));
|
|
|
}
|
|
|
|
|
|
+ @GetMapping(value = "/gongdanWorkdateList")
|
|
|
+ public Result<List<String>> getWorkDateByWeituoNO(String weituoId) {
|
|
|
+ return Result.OK(itdmGongdanDetailService.getWorkDateByWeituoNO(weituoId));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping(value = "/gongdanWoIdList")
|
|
|
+ public Result<List<String>> getWoIdByWeituoIdAndWordDate(String weituoId, String workdate) {
|
|
|
+ return Result.OK(itdmGongdanDetailService.getWoIdByWeituoIdAndWordDate(weituoId,workdate));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@GetMapping(value = "/gongdanDateListByWoId")
|
|
|
public Result<List<ItdmGongdanDetail>> gongdanDateList(String woId) {
|
|
|
List<ItdmGongdanDetail> detailListByWoId = itdmGongdanDetailService.getDetailListByWoId(woId);
|