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 = 50)
|
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;
|
}
|