|
@@ -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);
|
|
|
+ }
|
|
|
}
|