ws
2023-11-01 8bb6641ef68a158aabd0dc20b54fb6a4516b16fc
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.fzzy.api.entity;
 
import java.io.Serializable;
import java.util.Date;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.MappedSuperclass;
 
/**
 * @author chen
 * @date 2022-09-02 14:52
 */
@Data
@MappedSuperclass
public class ApiParent implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = -9028654668826709473L;
 
 
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
 
    @JSONField(serialize = false)
    @PropertyDef(label = "库区代码")
    @Column(name = "kqdm", length = 21)
    private String kqdm;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间")
    @Column(name = "syncTime")
    private Date syncTime;
}