Browse Source

船闸数据接收,特别注意数据库关键字

zoro 1 year ago
parent
commit
e6514c30b7

+ 4 - 2
src/main/java/com/shcd/entity/ShipIllegalArtificial.java

@@ -29,9 +29,11 @@ public class ShipIllegalArtificial implements Serializable {
     /**
      * 
      */
-    @TableField("INDEX")
-    private Long index;
+    @TableField("INDEXT")
+    private Long indext;
 
+    @TableField(exist = false)
+    private Long index;
     /**
      * 
      */

+ 9 - 6
src/main/java/com/shcd/entity/ShipIllegalAuto.java

@@ -20,13 +20,13 @@ public class ShipIllegalAuto implements Serializable {
      * 添加时间
      */
     @TableField("ADD_TIME")
-    private Date addTime;
+    private Date addTimeString;
 
     /**
      * 进入时间
      */
     @TableField("APPEAR_TIME")
-    private Date appearTime;
+    private Date appearTimeStr;
 
     /**
      * 估计船长
@@ -80,7 +80,7 @@ public class ShipIllegalAuto implements Serializable {
      * 消失时间
      */
     @TableField("DISAPPEAR_TIME")
-    private Date disappearTime;
+    private Date disappearTimeStr;
 
     /**
      * 高清图访问地址
@@ -97,7 +97,10 @@ public class ShipIllegalAuto implements Serializable {
     /**
      * 
      */
-    @TableField("INDEX")
+    @TableField("INDEXT")
+    private Long indext;
+
+    @TableField(exist = false)
     private Long index;
 
     /**
@@ -128,13 +131,13 @@ public class ShipIllegalAuto implements Serializable {
      * 
      */
     @TableField("MODIFY_TIME")
-    private Date modifyTime;
+    private Date modifyTimeString;
 
     /**
      * 
      */
     @TableField("OBJ_ID")
-    private String objId;
+    private String objid;
 
     /**
      * 0未超载,1已超载

+ 3 - 1
src/main/java/com/shcd/service/impl/ShipIllegalAutoServiceImpl.java

@@ -49,11 +49,13 @@ public class ShipIllegalAutoServiceImpl extends ServiceImpl<ShipIllegalAutoMappe
             if (new Integer(0).equals(hashMap.get("code"))) {
                 HashMap hashMap1 = JSONObject.parseObject(hashMap.get("data").toString(), HashMap.class);
                 List<ShipIllegalAuto> auto = JSONObject.parseArray(hashMap1.get("auto").toString(), ShipIllegalAuto.class);
-                List<ShipIllegalArtificial> artificial = JSONObject.parseArray(hashMap1.get("auto").toString(), ShipIllegalArtificial.class);
+                List<ShipIllegalArtificial> artificial = JSONObject.parseArray(hashMap1.get("handle").toString(), ShipIllegalArtificial.class);
                 if (!auto.isEmpty()) {
+                    auto.forEach(i->i.setIndext(i.getIndex()));
                     this.saveOrUpdateBatch(auto);
                 }
                 if (!artificial.isEmpty()) {
+                    artificial.forEach(i->i.setIndext(i.getIndex()));
                     shipIllegalArtificialService.saveOrUpdateBatch(artificial);
                 }
             }

+ 1 - 1
src/main/resources/mapper/ShipIllegalArtificialMapper.xml

@@ -7,7 +7,7 @@
     <resultMap id="BaseResultMap" type="com.shcd.entity.ShipIllegalArtificial">
             <result property="createTime" column="CREATE_TIME" jdbcType="TIMESTAMP"/>
             <result property="dtDate" column="DT_DATE" jdbcType="TIMESTAMP"/>
-            <result property="index" column="INDEX" jdbcType="DECIMAL"/>
+            <result property="indext" column="INDEXT" jdbcType="DECIMAL"/>
             <result property="pkId" column="PK_ID" jdbcType="VARCHAR"/>
             <result property="stDescription" column="ST_DESCRIPTION" jdbcType="VARCHAR"/>
             <result property="stLossPosition" column="ST_LOSS_POSITION" jdbcType="VARCHAR"/>

+ 6 - 6
src/main/resources/mapper/ShipIllegalAutoMapper.xml

@@ -5,8 +5,8 @@
 <mapper namespace="com.shcd.mapper.ShipIllegalAutoMapper">
 
     <resultMap id="BaseResultMap" type="com.shcd.entity.ShipIllegalAuto">
-            <result property="addTime" column="ADD_TIME" jdbcType="TIMESTAMP"/>
-            <result property="appearTime" column="APPEAR_TIME" jdbcType="TIMESTAMP"/>
+            <result property="addTimeString" column="ADD_TIME" jdbcType="TIMESTAMP"/>
+            <result property="appearTimeStr" column="APPEAR_TIME" jdbcType="TIMESTAMP"/>
             <result property="captain" column="SHIP_LENGTH_PREDICT" jdbcType="DECIMAL"/>
             <result property="cc" column="SHIP_LENGTH" jdbcType="DECIMAL"/>
             <result property="ck" column="SHIP_WIDTH" jdbcType="DECIMAL"/>
@@ -15,16 +15,16 @@
             <result property="crossSectionId" column="CROSS_SECTION_ID" jdbcType="VARCHAR"/>
             <result property="crossSectionName" column="CROSS_SECTION_NAME" jdbcType="VARCHAR"/>
             <result property="direction" column="DIRECTION" jdbcType="DECIMAL"/>
-            <result property="disappearTime" column="DISAPPEAR_TIME" jdbcType="TIMESTAMP"/>
+            <result property="disappearTimeStr" column="DISAPPEAR_TIME" jdbcType="TIMESTAMP"/>
             <result property="hdPathUrl" column="HD_PATH_URL" jdbcType="VARCHAR"/>
             <result property="id" column="ID" jdbcType="VARCHAR"/>
-            <result property="index" column="INDEX" jdbcType="DECIMAL"/>
+            <result property="indext" column="INDEXT" jdbcType="DECIMAL"/>
             <result property="isLaden" column="IS_LOAD" jdbcType="DECIMAL"/>
             <result property="lifeJecket" column="LIFE_JACKET" jdbcType="DECIMAL"/>
             <result property="mmsi" column="MMSI" jdbcType="VARCHAR"/>
             <result property="mmsiShipName" column="MMSI_SHIP_NAME" jdbcType="VARCHAR"/>
-            <result property="modifyTime" column="MODIFY_TIME" jdbcType="TIMESTAMP"/>
-            <result property="objId" column="OBJ_ID" jdbcType="VARCHAR"/>
+            <result property="modifyTimeString" column="MODIFY_TIME" jdbcType="TIMESTAMP"/>
+            <result property="objid" column="OBJ_ID" jdbcType="VARCHAR"/>
             <result property="overLoad" column="OVER_LOAD" jdbcType="DECIMAL"/>
             <result property="playbackPath" column="PLAYBACK_PATH" jdbcType="VARCHAR"/>
             <result property="problemDescription" column="PROBLEM_DESCRIPTION" jdbcType="VARCHAR"/>

+ 19 - 4
src/test/java/test.java

@@ -35,8 +35,10 @@ public class test {
     @Test
     public void test2() {
         Date date = new Date();
-        String end = DateUtils.dateToString(date, "yyyy-MM-dd HH:mm");
-        String start = DateUtils.dateToString(new Date(date.getTime() - 5 * 60 * 1000), "yyyy-MM-dd HH:mm");
+//        String end = DateUtils.dateToString(date, "yyyy-MM-dd HH:mm");
+//        String start = DateUtils.dateToString(new Date(date.getTime() - 5 * 60 * 1000), "yyyy-MM-dd HH:mm");
+        String start = "2023-10-17 00:00";
+        String end = "2023-10-17 23:59";
         HttpResponse execute = HttpUtil.createGet("http://222.66.154.74:8024/xunxiang/ship/open/get-illegal-info?start=" + start + "&end=" + end).
                 header("secretId", "durr").
                 header("secretKey", "WpEuxS+GyBzT0go10TGJeQjR5reA0LolEkmVzfmS87dU7H7LNP2xYsD1rmGgoEHx8ApuX8GaIPgZsUhOa8wJ+YkfkTsuMC74zMOVCyt5xOw=").execute();
@@ -44,9 +46,13 @@ public class test {
         HashMap hashMap = JSONObject.parseObject(execute.body(), HashMap.class);
         HashMap hashMap1 = JSONObject.parseObject(hashMap.get("data").toString(), HashMap.class);
         List<ShipIllegalAuto> auto = JSONObject.parseArray(hashMap1.get("auto").toString(), ShipIllegalAuto.class);
-        List<ShipIllegalArtificial> artificial = JSONObject.parseArray(hashMap1.get("auto").toString(), ShipIllegalArtificial.class);
+        List<ShipIllegalArtificial> artificial = JSONObject.parseArray(hashMap1.get("handle").toString(), ShipIllegalArtificial.class);
         if (!auto.isEmpty()) {
-            shipIllegalAutoService.saveOrUpdateBatch(auto);
+            auto.forEach(i->i.setIndext(i.getIndex()));
+//            for (ShipIllegalAuto shipIllegalAuto : auto) {
+//                shipIllegalAutoService.saveOrUpdate(shipIllegalAuto);
+//            }
+           shipIllegalAutoService.saveOrUpdateBatch(auto);
         }
         if (!artificial.isEmpty()) {
             shipIllegalArtificialService.saveOrUpdateBatch(artificial);
@@ -118,4 +124,13 @@ public class test {
         shipLockWaterLevelService.saveOrUpdate(data);
         System.out.println(data);
     }
+
+    @Test
+    public void test6(){
+        Date date = new Date();
+        String end = DateUtils.dateToString(date, "yyyy-MM-dd HH:mm");
+        String start = DateUtils.dateToString(new Date(date.getTime() - 5 * 60 * 1000), "yyyy-MM-dd HH:mm");
+        System.out.println(end);
+        System.out.println(start);
+    }
 }