Browse Source

修改统计分析接口

zyl 1 month ago
parent
commit
66e077da9c

+ 2 - 2
liutongyi-admin/src/main/java/com/citygis/web/controller/TabSystemMsgController.java

@@ -58,9 +58,9 @@ public class TabSystemMsgController extends BaseController {
     @Log(title = "统计分析管理-jkcloud实际量", businessType = BusinessType.SELECT)
     @ApiOperation("jkcloud实际量")
     @GetMapping("/getJkcloudCount")
-    public TableDataInfo getJkcloudCount(JkCloudCount jkCloudCount) {
+    public TableDataInfo getJkcloudNewCount(JkCloudCount jkCloudCount) {
         startPage();
-        return getDataTable(tabSystemMsgService.getJkcloudCount());
+        return getDataTable(tabSystemMsgService.getJkcloudNewCount());
     }
 
     @Log(title = "统计分析管理-url当天交换量", businessType = BusinessType.SELECT)

+ 3 - 1
liutongyi-admin/src/main/java/com/citygis/web/mapper/TabSystemMsgMapper.java

@@ -25,9 +25,11 @@ public interface TabSystemMsgMapper extends BaseMapper<TabSystemMsg> {
 
     List<TabAccessTableMsg> getTabAccessTableMsgList();
 
+    List<TabAccessTableMsg> getJkcloudCount();
+
     List<Exchange> getExchangeCount(String dateTime);
 
-    List<JkCloudCount> getJkcloudCount();
+    List<JkCloudCount> getJkcloudNewCount();
 
     List<UrlDayCount> getUrlDayCount();
 

+ 1 - 1
liutongyi-admin/src/main/java/com/citygis/web/service/ITabSystemMsgService.java

@@ -21,7 +21,7 @@ public interface ITabSystemMsgService extends IService<TabSystemMsg> {
 
     List<Exchange> getExchangeCount(String dateTime);
 
-    List<JkCloudCount> getJkcloudCount();
+    List<JkCloudCount> getJkcloudNewCount();
 
     List<UrlDayCount> getUrlDayCount();
 

+ 22 - 4
liutongyi-admin/src/main/java/com/citygis/web/service/impl/TabSystemMsgServiceImpl.java

@@ -16,6 +16,7 @@ import org.springframework.stereotype.Service;
 import javax.annotation.Resource;
 import java.time.DayOfWeek;
 import java.time.LocalDate;
+import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
 import java.util.Map;
@@ -47,7 +48,12 @@ public class TabSystemMsgServiceImpl extends ServiceImpl<TabSystemMsgMapper, Tab
     @Override
     public List<TabSystemMsg> getStatistics(TabSystemMsg tabSystemMsg) {
         List<TabSystemMsg> list = tabSystemMsgMapper.getTabSystemMsgList(tabSystemMsg);
-        List<TabAccessTableMsg> tabAccessTableMsg = tabSystemMsgMapper.getTabAccessTableMsgList();
+
+        List<TabAccessTableMsg> tabAccessTableMsg = new ArrayList<>();
+
+        tabAccessTableMsg.addAll(getJkcloudCount());
+        tabAccessTableMsg.addAll(tabSystemMsgMapper.getTabAccessTableMsgList());
+
         list.forEach(tabSystemMsg1 -> {
             tabAccessTableMsg.forEach(tabAccessTableMsg1 -> {
                 if (tabAccessTableMsg1.getTableName().equals(tabSystemMsg1.getTableName())) {
@@ -62,7 +68,12 @@ public class TabSystemMsgServiceImpl extends ServiceImpl<TabSystemMsgMapper, Tab
     public List<TabSystemMsg> getTabSystemMsgList(TabSystemMsg tabSystemMsg) {
 
         List<TabSystemMsg> list = tabSystemMsgMapper.getTabSystemMsgList(tabSystemMsg);
-        List<TabAccessTableMsg> tabAccessTableMsg = tabSystemMsgMapper.getTabAccessTableMsgList();
+
+        List<TabAccessTableMsg> tabAccessTableMsg = new ArrayList<>();
+
+        tabAccessTableMsg.addAll(getJkcloudCount());
+        tabAccessTableMsg.addAll(tabSystemMsgMapper.getTabAccessTableMsgList());
+
         list.forEach(tabSystemMsg1 -> {
             tabAccessTableMsg.forEach(tabAccessTableMsg1 -> {
                 if (tabAccessTableMsg1.getTableName().equals(tabSystemMsg1.getTableName())) {
@@ -74,14 +85,21 @@ public class TabSystemMsgServiceImpl extends ServiceImpl<TabSystemMsgMapper, Tab
         return list;
     }
 
+    public List<TabAccessTableMsg> getJkcloudCount() {
+        DynamicDataSourceContextHolder.setDataSourceType(DataSourceType.SLAVE_TWO.name());
+        List<TabAccessTableMsg> jkcloudCount = tabSystemMsgMapper.getJkcloudCount();
+        DynamicDataSourceContextHolder.clearDataSourceType();
+        return jkcloudCount;
+    }
+
     @Override
     public List<Exchange> getExchangeCount(String dateTime) {
         return tabSystemMsgMapper.getExchangeCount(dateTime);
     }
 
     @Override
-    public List<JkCloudCount> getJkcloudCount() {
-        return tabSystemMsgMapper.getJkcloudCount();
+    public List<JkCloudCount> getJkcloudNewCount() {
+        return tabSystemMsgMapper.getJkcloudNewCount();
     }
 
     @Override

+ 669 - 1
liutongyi-admin/src/main/resources/mapper/TabSystemMsgMapper.xml

@@ -55,6 +55,674 @@
                 and time &lt;= #{endTime}
             </if>
         </where>
+
+        <!--        SELECT-->
+        <!--        t.表当前实际数量 count,-->
+        <!--        t.表名 tableName,-->
+        <!--        o.inx id-->
+        <!--        FROM-->
+        <!--        (-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_BLDJGLK' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_BLDJGLK-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_FXBBDJCJG' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_FXBBDJCJG-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_FXBJCGAB' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_FXBJCGAB-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_FXBXJJCJG' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_FXBXJJCJG-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_YSCRBZZD' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_YSCRBZZD-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_TJXXB' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_TJXXB-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C5_YMJCXX' 表名-->
+        <!--        FROM-->
+        <!--        T_C5_YMJCXX-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_JYXX' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_JYXX-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_MBDJ' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_MBDJ-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_MBDJ_JZS' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_MBDJ_JZS-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_MBSF_FYXX' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_MBSF_FYXX-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_MBSF_NCZGW_JBS' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_MBSF_NCZGW_JBS-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_MBSFK' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_MBSFK-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_SCCY' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_SCCY-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_TNBSCDJ' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_TNBSCDJ-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_TZCL' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_TZCL-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_ZG' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_ZG-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_TB_SFJH' 表名-->
+        <!--        FROM-->
+        <!--        CDC_TB_SFJH-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_TB_XT_DEADCARD' 表名-->
+        <!--        FROM-->
+        <!--        CDC_TB_XT_DEADCARD-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_TB_XT_GLDXJBXX' 表名-->
+        <!--        FROM-->
+        <!--        CDC_TB_XT_GLDXJBXX-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_XT_SCZZJG' 表名-->
+        <!--        FROM-->
+        <!--        CDC_XT_SCZZJG-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'CDC_FR_GXY_ALERT' 表名-->
+        <!--        FROM-->
+        <!--        CDC_FR_GXY_ALERT-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C3_ZLBGK' 表名-->
+        <!--        FROM-->
+        <!--        T_C3_ZLBGK-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C4_NCZBGK_EQ' 表名-->
+        <!--        FROM-->
+        <!--        T_C4_NCZBGK_EQ-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C4_NCZLBBB' 表名-->
+        <!--        FROM-->
+        <!--        T_C4_NCZLBBB-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C4_XGBGK' 表名-->
+        <!--        FROM-->
+        <!--        T_C4_XGBGK-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'T_C4_XGLBBB' 表名-->
+        <!--        FROM-->
+        <!--        T_C4_XGLBBB-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'HZBL_GATJ' 表名-->
+        <!--        FROM-->
+        <!--        HZBL_GATJ-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'die_age_register_stat' 表名-->
+        <!--        FROM-->
+        <!--        die_age_register_stat-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'die_sex_register_stat' 表名-->
+        <!--        FROM-->
+        <!--        die_sex_register_stat-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        COUNT(1) 表当前实际数量,-->
+        <!--        'die_type_register_stat' 表名-->
+        <!--        FROM-->
+        <!--        die_type_register_stat-->
+
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and CREATETIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and CREATETIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+        <!--        UNION ALL-->
+        <!--        SELECT-->
+        <!--        SUM(CAST (receiveCount AS INT)) 表当前实际数量,-->
+        <!--        tabName 表名-->
+        <!--        FROM-->
+        <!--        tab_kafkaLog-->
+        <!--        <where>-->
+        <!--            <if test="startTime != null">-->
+        <!--                and TIME >= #{startTime}-->
+        <!--            </if>-->
+        <!--            <if test="endTime != null">-->
+        <!--                and TIME &lt;= #{endTime}-->
+        <!--            </if>-->
+        <!--        </where>-->
+
+        <!--        GROUP BY-->
+        <!--        tabName) t-->
+        <!--        LEFT JOIN tab_order o ON t.表名 = o.tablename-->
+    </select>
+
+    <select id="getJkcloudCount" resultType="com.citygis.web.domain.TabAccessTableMsg">
+        SELECT
+        'T_C11_KQFJXX' tableName,
+        COUNT(1) count
+        FROM
+        T_C11_KQFJXX UNION ALL
+        SELECT
+        'T_C11_JZDWDA' tableName,
+        COUNT(1) count
+        FROM
+        T_C11_JZDWDA UNION ALL
+        SELECT
+        'T_C11_YHDA' tableName,
+        COUNT(1) count
+        FROM
+        T_C11_YHDA UNION ALL
+        SELECT
+        'T_C11_ZYRYDA' tableName,
+        COUNT(1) count
+        FROM
+        T_C11_ZYRYDA UNION ALL
+        SELECT
+        'stk_bill_item' tableName,
+        COUNT(1) count
+        FROM
+        stk_bill_item UNION ALL
+        SELECT
+        'stk_stock' tableName,
+        COUNT(1) count
+        FROM
+        stk_stock
+        <where>
+            <if test="startTime != null">
+                and CREATETIME >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and CREATETIME &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'schedule' tableName,
+        COUNT(1) count
+        FROM
+        schedule UNION ALL
+        SELECT
+        'base_product' tableName,
+        COUNT(1) count
+        FROM
+        base_product UNION ALL
+        SELECT
+        'T_XSEXX' tableName,
+        COUNT(1) count
+        FROM
+        T_XSEXX UNION ALL
+        SELECT
+        'stk_bill' tableName,
+        COUNT(1) count
+        FROM
+        stk_bill UNION ALL
+        SELECT
+        'stk_lot_info' tableName,
+        COUNT(1) count
+        FROM
+        stk_lot_info UNION ALL
+        SELECT
+        'OVMS_T_JMJZDAXX' tableName,
+        COUNT(1) count
+        FROM
+        OVMS_T_JMJZDAXX UNION ALL
+        SELECT
+        'raw_inoculate_copy4' tableName,
+        COUNT(1) count
+        FROM
+        raw_inoculate_copy4
+        <where>
+            <if test="startTime != null">
+                and uptime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and uptime &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'T_JMJZDAJZJL_COPY2' tableName,
+        COUNT(1) count
+        FROM
+        T_JMJZDAJZJL_COPY2
+        <where>
+            <if test="startTime != null">
+                and updatetime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and updatetime &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'GIMS_T_JMJZDAXX_COPY1' tableName,
+        COUNT(1) count
+        FROM
+        GIMS_T_JMJZDAXX_COPY1
+        <where>
+            <if test="startTime != null">
+                and updatetime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and updatetime &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'trace_code_copy4' tableName,
+        COUNT(1) count
+        FROM
+        trace_code_copy4
+        <where>
+            <if test="startTime != null">
+                and modifytime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and modifytime &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'T_DIC_GENERAL' tableName,
+        COUNT(1) count
+        FROM
+        T_DIC_GENERAL UNION ALL
+        SELECT
+        'appointment' tableName,
+        COUNT(1) count
+        FROM
+        appointment
+        <where>
+            <if test="startTime != null">
+                and update_time >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and update_time &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'T_WBJ' tableName,
+        COUNT(1) count
+        FROM
+        T_WBJ UNION ALL
+        SELECT
+        'EPI_CHILDINFO_COPY4' tableName,
+        COUNT(1) count
+        FROM
+        EPI_CHILDINFO_COPY4
+        <where>
+            <if test="startTime != null">
+                and updatetime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and updatetime &lt;= #{endTime}
+            </if>
+        </where>
+        UNION ALL
+        SELECT
+        'EPI_JZJL_COPY5' tableName,
+        COUNT(1) count
+        FROM
+        EPI_JZJL_COPY5
+        <where>
+            <if test="startTime != null">
+                and updatetime >= #{startTime}
+            </if>
+            <if test="endTime != null">
+                and updatetime &lt;= #{endTime}
+            </if>
+        </where>
     </select>
 
     <select id="getExchangeCount" resultType="com.citygis.web.domain.Exchange">
@@ -86,7 +754,7 @@
         <!--        inx-->
     </select>
 
-    <select id="getJkcloudCount" resultType="com.citygis.web.domain.JkCloudCount">
+    <select id="getJkcloudNewCount" resultType="com.citygis.web.domain.JkCloudCount">
 
         SELECT tableName, tableCount
         FROM test.dbo.tab_jkcloud