Pu Zhibing
2025-03-11 19c823c2c8df4cceee0d827fb598e7f0d9b69154
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}