diff --git a/README.md b/README.md
index 4490a6d..8268c34 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,11 @@
## Project Introduction
-
+
+

+
-> 🔥🔥🔥 [MilvusPlus](https://gitee.com/dromara/MilvusPlus) (short for MP) is an operational tool for [Milvus](https://milvus.io), designed to simplify interactions with the Milvus vector database, providing developers with an intuitive API similar to MyBatis-Plus annotations and method call style, born to improve efficiency.
+> 🔥🔥🔥 [MilvusPlus](https://milvusplus.cn/) (short for MP) is an operational tool for [Milvus](https://milvus.io), designed to simplify interactions with the Milvus vector database, providing developers with an intuitive API similar to MyBatis-Plus annotations and method call style, born to improve efficiency.
## Features
diff --git a/milvus-spring-demo/pom.xml b/milvus-spring-demo/pom.xml
index afa309d..0e2a550 100644
--- a/milvus-spring-demo/pom.xml
+++ b/milvus-spring-demo/pom.xml
@@ -21,7 +21,7 @@
org.dromara
milvus-plus-boot-starter
- 2.1.3
+ 2.1.4
diff --git a/milvus-spring-demo/src/main/java/org/dromara/milvus/demo/model/Face.java b/milvus-spring-demo/src/main/java/org/dromara/milvus/demo/model/Face.java
index 72afb81..4d3f38b 100644
--- a/milvus-spring-demo/src/main/java/org/dromara/milvus/demo/model/Face.java
+++ b/milvus-spring-demo/src/main/java/org/dromara/milvus/demo/model/Face.java
@@ -10,7 +10,6 @@ import java.util.List;
@Data
@MilvusCollection(name = "face_collection",level = ConsistencyLevel.STRONG)
-@MilvusPartition(name = {"face_001", "face_002"})
@GenerateMilvusMapper
public class Face {
@MilvusField(
@@ -33,6 +32,12 @@ public class Face {
)
private Person person;
+ @MilvusField(
+ name = "temp",
+ dataType = DataType.Int64
+ )
+ private Integer temp;
+
@MilvusField(
name = "face_vector", // 字段名称
dataType = DataType.FloatVector, // 数据类型为浮点型向量