|
|
@@ -76,6 +76,14 @@ public class MainBusinessTask {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Scheduled(cron = "0 30 1 * * ?")
|
|
|
+ public void uploadEmrOutpatientRecordByClock() {
|
|
|
+ if (StrUtil.isNotBlank(thyy.getMainAddress())) {
|
|
|
+ String url = thyy.getMainAddress() + "/crbBase/uploadEmrOutpatientRecordByClock";
|
|
|
+ template.getForObject(url, String.class);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@Scheduled(cron = "0 0 6 * * ?")
|
|
|
public void notifyDailyCount() {
|
|
|
if (StrUtil.isNotBlank(thyy.getMainAddress())) {
|