Explorar o código

视图名调整

0027005599 %!s(int64=2) %!d(string=hai) anos
pai
achega
a2a66c7664

+ 3 - 3
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/job/XCFYDatav_hospitalizatio_settle_detailJob.java

@@ -50,17 +50,17 @@ public class XCFYDatav_hospitalizatio_settle_detailJob implements Job {
 
     @Override
     public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
-        String sql = "select * from V_YBKF_HOSPITALIZATIO_SETTLE_DETAIL where  item_id is not null and rownum<1000 %s";
+        String sql = "select * from V_YBKF_HOSP_SETTLE_DETAIL where  item_id is not null and rownum<1000 %s";
         List<DictModel> cateGoriesList = sysDictService.getDictItems(Constant.DICT_CATEGORIES_ITEMS_KEY);
         Map<String, String> cateGoriesMap = new HashMap<>();
         for (DictModel dictModel : cateGoriesList) {
             cateGoriesMap.put(dictModel.getText(), dictModel.getValue());
         }
         while (true) {
-            log.info("开始同步V_YBKF_hospitalizatio_settle_detail数据");
+            log.info("开始同步V_YBKF_HOSP_SETTLE_DETAIL数据");
             String whereSql = "";
             Long hsdId = getLastId();
-            log.info("开始同步V_YBKF_hospitalizatio_settle_detail数据,获取上个同步记录访问最大主键ID:{}", hsdId);
+            log.info("开始同步V_YBKF_HOSP_SETTLE_DETAIL数据,获取上个同步记录访问最大主键ID:{}", hsdId);
             Map<String, Object> paramMap = new HashMap<>();
             if (null != hsdId && hsdId > 0) {
                 whereSql = "and ID>:ID";

+ 3 - 3
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/job/XCFYDatav_master_admission_billJob.java

@@ -201,8 +201,8 @@ public class XCFYDatav_master_admission_billJob implements Job {
 //                cateGoriesMap.put(dictModel.getText(), dictModel.getValue());
 //            }
             String whereSql = "";
-            log.info("开始同步v_ybkf_hospitalizatio_settle_detail数据,HISID:{}", hisId);
-            String sql = "select * from V_YBKF_HOSPITALIZATIO_SETTLE_DETAIL where hisid=:HISID and item_id is not null";
+            log.info("开始同步V_YBKF_HOSP_SETTLE_DETAIL数据,HISID:{}", hisId);
+            String sql = "select * from V_YBKF_HOSP_SETTLE_DETAIL where hisid=:HISID and item_id is not null";
             Map<String, Object> paramMap = new HashMap<>();
 
             paramMap.put("HISID", hisId);
@@ -242,7 +242,7 @@ public class XCFYDatav_master_admission_billJob implements Job {
                     return true;
                 }
             });
-            log.info("结束同步v_ybkf_hospitalizatio_settle_detail数据,HISID:{} 条数:{}", hisId, count);
+            log.info("结束同步V_YBKF_HOSP_SETTLE_DETAIL数据,HISID:{} 条数:{}", hisId, count);
             return count;
         } catch (Exception e) {
             log.error(e.getMessage(), e);