package com.ld.igds.models;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口数据上传状态日志
|
*
|
* @author chen
|
*
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_INTE_STATUS_LOG")
|
public class InteStatusLog implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "ID_")
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
|
@Id
|
@Column(name = "BIZ_ID_", length = 60)
|
@PropertyDef(label = "业务id")
|
private String bizId;
|
|
@Id
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "BIZ_TYPE_", length = 20)
|
@PropertyDef(label = "业务类型")
|
private String bizType;
|
|
@Column(name = "INTER_FACE_ID_", length = 20)
|
@PropertyDef(label = "接口id")
|
private String interfaceId;
|
|
@Column(name = "INTER_FACE_TYPE_", length = 20)
|
@PropertyDef(label = "接口类型")
|
private String interfaceType;
|
|
@Column(name = "UPDATE_TIME_")
|
@PropertyDef(label = "上传时间")
|
private Date updateTime;
|
|
@Column(name = "STATUS_", length = 10)
|
@PropertyDef(label = "上传状态")
|
private String status;
|
}
|