‘linchangsheng’ 2 дней назад
Родитель
Сommit
d855c4b1f3

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBase2022Es.java

@@ -16,7 +16,7 @@ import java.math.BigDecimal;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2022")
+@Document(indexName = "pg_order_base2022")
 public class OrderBase2022Es {
 
     @Id

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBase2023Es.java

@@ -16,7 +16,7 @@ import java.math.BigDecimal;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2023")
+@Document(indexName = "pg_order_base2023")
 public class OrderBase2023Es {
 
     @Id

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBase2024Es.java

@@ -16,7 +16,7 @@ import java.math.BigDecimal;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2024")
+@Document(indexName = "pg_order_base2024")
 public class OrderBase2024Es {
 
     @Id

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBaseEs2022Date.java

@@ -17,7 +17,7 @@ import java.util.Date;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2022")
+@Document(indexName = "pg_order_base2022")
 public class OrderBaseEs2022Date {
 
     @Id

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBaseEs2023Date.java

@@ -17,7 +17,7 @@ import java.util.Date;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2023")
+@Document(indexName = "pg_order_base2023")
 public class OrderBaseEs2023Date {
 
     @Id

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/bean/es/OrderBaseEs2024Date.java

@@ -17,7 +17,7 @@ import java.util.Date;
  * @date 2023/6/19 10:39 星期一
  */
 @Data
-@Document(indexName = "pg_order_base_2024")
+@Document(indexName = "pg_order_base2024")
 public class OrderBaseEs2024Date {
 
     @Id

+ 21 - 22
mall-server-api/src/main/java/com/gree/mall/manager/logic/workorder/OrderBaseEsLogic.java

@@ -344,27 +344,26 @@ public class OrderBaseEsLogic {
 
     public void test() {
 
-    /*    boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class).delete();
+        boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class).delete();
         IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class);
         if (!indexOperations1.exists()) {
             indexOperations1.create();
             Document document = indexOperations1.createMapping();
             indexOperations1.putMapping(document);
-        }*/
-
-/*        boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class).delete();
-        IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class);
-        if (!indexOperations1.exists()) {
-            indexOperations1.create();
-            Document document = indexOperations1.createMapping();
-            indexOperations1.putMapping(document);
-        }*/
-        boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class).delete();
-        IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class);
-        if (!indexOperations1.exists()) {
-            indexOperations1.create();
-            Document document = indexOperations1.createMapping();
-            indexOperations1.putMapping(document);
+        }
+        boolean b = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class).delete();
+        IndexOperations indexOperations2 = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class);
+        if (!indexOperations2.exists()) {
+            indexOperations2.create();
+            Document document = indexOperations2.createMapping();
+            indexOperations2.putMapping(document);
+        }
+        boolean c = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class).delete();
+        IndexOperations indexOperations3 = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class);
+        if (!indexOperations3.exists()) {
+            indexOperations3.create();
+            Document document = indexOperations3.createMapping();
+            indexOperations3.putMapping(document);
         }
 
 
@@ -809,7 +808,7 @@ public class OrderBaseEsLogic {
                     60000, // Scroll 上下文保持时间(毫秒)
                     query,
                     OrderBase2023Es.class,
-                    IndexCoordinates.of("pg_order_base_2023")
+                    IndexCoordinates.of("pg_order_base2023")
             );
 
             String scrollId = scrollHits.getScrollId();
@@ -834,7 +833,7 @@ public class OrderBaseEsLogic {
                             scrollId,
                             60000,
                             OrderBase2023Es.class,
-                            IndexCoordinates.of("pg_order_base_2023")
+                            IndexCoordinates.of("pg_order_base2023")
                     );
                     scrollId = scrollHits.getScrollId(); // 更新 scrollId
                 }
@@ -857,7 +856,7 @@ public class OrderBaseEsLogic {
                     60000, // Scroll 上下文保持时间(毫秒)
                     query,
                     OrderBase2024Es.class,
-                    IndexCoordinates.of("pg_order_base_2024")
+                    IndexCoordinates.of("pg_order_base2024")
             );
 
             String scrollId = scrollHits.getScrollId();
@@ -882,7 +881,7 @@ public class OrderBaseEsLogic {
                             scrollId,
                             60000,
                             OrderBase2024Es.class,
-                            IndexCoordinates.of("pg_order_base_2024")
+                            IndexCoordinates.of("pg_order_base2024")
                     );
                     scrollId = scrollHits.getScrollId(); // 更新 scrollId
                 }
@@ -906,7 +905,7 @@ public class OrderBaseEsLogic {
                     60000, // Scroll 上下文保持时间(毫秒)
                     query,
                     OrderBase2022Es.class,
-                    IndexCoordinates.of("pg_order_base_2022")
+                    IndexCoordinates.of("pg_order_base2022")
             );
 
             String scrollId = scrollHits.getScrollId();
@@ -931,7 +930,7 @@ public class OrderBaseEsLogic {
                             scrollId,
                             60000,
                             OrderBase2022Es.class,
-                            IndexCoordinates.of("pg_order_base_2022")
+                            IndexCoordinates.of("pg_order_base2022")
                     );
                     scrollId = scrollHits.getScrollId(); // 更新 scrollId
                 }