|
@@ -49,6 +49,20 @@ public class RiBaoController {
|
|
// private String user_update;
|
|
// private String user_update;
|
|
// private String time_update;
|
|
// private String time_update;
|
|
|
|
|
|
|
|
+ //查询日历日报
|
|
|
|
+ @GetMapping("/riBao/getRibaoWithDate")
|
|
|
|
+ public Model<MsReport> getRibaoWithDate(@Pd(name = "userCreate") Long userCreate, @Pd(name = "reportDate") String reportDate) {
|
|
|
|
+ MsReport msReport = riBaoService.getRibaoWithDate(userCreate, reportDate);
|
|
|
|
+ return Model.newSuccess(msReport);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 查询日历日报关联的家人列表
|
|
|
|
+ @GetMapping("/riBao/queryRibaoDetailListWithDate")
|
|
|
|
+ public Model<List<MsSuspected>> queryRibaoDetailListWithDate(@Pd(name = "reportId") Long reportId) {
|
|
|
|
+ List<MsSuspected> listSuspected = riBaoService.queryRibaoDetailList(reportId);
|
|
|
|
+ return Model.newSuccess(listSuspected);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
//查询日报
|
|
//查询日报
|
|
@GetMapping("/riBao/getRibao")
|
|
@GetMapping("/riBao/getRibao")
|