package com.ruoyi.dataInterchange.pojo;
|
|
import lombok.Data;
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.elasticsearch.annotations.Field;
|
import org.springframework.data.elasticsearch.annotations.FieldType;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/7 16:22
|
*/
|
@Data
|
public class BaseModel {
|
@Id
|
@Field(type = FieldType.Auto)
|
private String id;
|
/**
|
* 下级平台唯一标识
|
*/
|
@Field(type = FieldType.Integer)
|
private Integer inferiorPlatformId;
|
/**
|
* 添加时间
|
*/
|
@Field(type = FieldType.Long)
|
private Long createTime;
|
}
|