From 70dfa087a9f61ecc33f3b5bc618202c2023e38f3 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 19 八月 2024 15:45:26 +0800
Subject: [PATCH] 优云接口工单生成

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/CodeByAreaResult.java |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/CodeByAreaResult.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/CodeByAreaResult.java
index e675069..6fd707e 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/CodeByAreaResult.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/CodeByAreaResult.java
@@ -1,6 +1,8 @@
 package com.ycl.platform.domain.result.HK;
 
+import com.ycl.platform.domain.result.BaseResult;
 import lombok.Data;
+import org.springframework.data.mongodb.core.index.TextIndexed;
 import org.springframework.data.mongodb.core.mapping.Document;
 
 /**
@@ -9,17 +11,19 @@
  * @author gonghl
  */
 @Data
-@Document(collection = "code_by_area")
-public class CodeByAreaResult extends BaseResult{
+@Document(collection = "hk_code_by_area")
+public class CodeByAreaResult extends BaseResult {
 
     /**
      * 缁勭粐缂栧彿
      */
+    @TextIndexed
     private String orgCode;
 
     /**
      * 缁勭粐鍚嶇О
      */
+    @TextIndexed
     private String orgName;
 
     /**

--
Gitblit v1.8.0