Pu Zhibing
2025-03-11 19c823c2c8df4cceee0d827fb598e7f0d9b69154
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/pojo/BaseModel.java
@@ -5,8 +5,6 @@
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
import java.time.LocalDateTime;
/**
 * @author zhibing.pu
 * @Date 2025/3/7 16:22
@@ -15,7 +13,7 @@
public class BaseModel {
   @Id
   @Field(type = FieldType.Auto)
   private Long id;
   private String id;
   /**
    * 下级平台唯一标识
    */
@@ -24,6 +22,6 @@
   /**
    * 添加时间
    */
   @Field(type = FieldType.Date)
   private LocalDateTime createTime;
   @Field(type = FieldType.Long)
   private Long createTime;
}