|
@@ -4,6 +4,7 @@ import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.data.*;
|
|
|
import com.diagbot.facade.data.*;
|
|
|
import com.diagbot.facade.str.AStrOperativeNoteFacade;
|
|
|
+import com.diagbot.service.impl.DataConsistencyServiceImpl;
|
|
|
import com.diagbot.vo.data.*;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -53,6 +54,8 @@ public class DataController {
|
|
|
private StructuralOldDataFacade sendOnebehospitalCode;
|
|
|
@Autowired
|
|
|
private AStrOperativeNoteFacade aStrOperativeNoteFacade;
|
|
|
+ @Autowired
|
|
|
+ private DataConsistencyServiceImpl dataConsistencyService;
|
|
|
|
|
|
|
|
|
//
|
|
@@ -262,4 +265,13 @@ public class DataController {
|
|
|
public void dataViewSupplementaryRecord(@RequestBody BeHospitalInfoDataVo beHospitalInfoDataVo) {
|
|
|
sendOnebehospitalCode.sendBehospitalCodeDataOld(beHospitalInfoDataVo);
|
|
|
}
|
|
|
+
|
|
|
+ @PostMapping("/consoleDataConsistency")
|
|
|
+ @ApiOperation(value = "数据补录")
|
|
|
+ @SysLogger("consoleDataConsistency")
|
|
|
+ public void consoleDataConsistency(@RequestParam("startDate") String startDate,@RequestParam("endDate") String endDate) {
|
|
|
+ dataConsistencyService.consoleConsistency(startDate, endDate);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|