package com.fzzy.igds.dzhwk.domain;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description 电子货位卡设备实体
|
* @Author CZT
|
* @Date 2025/06/03 17:24
|
*/
|
@Data
|
@Entity
|
@Table(name = "H_SCREEN_SER")
|
public class ScreenSer implements Serializable {
|
|
public static String SORT_PROP = "id";
|
|
@Id
|
@PropertyDef(label = "主键ID")
|
@Column(name = "ID_", length = 40)
|
private String id;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 40)
|
@PropertyDef(label = "所属分库")
|
private String deptId;
|
|
@PropertyDef(label = "货位卡SN")
|
@Column(name = "SN_", length = 100)
|
private String sn;
|
|
@PropertyDef(label = "设备名称")
|
@Column(name = "NAME_", length = 100)
|
private String name;
|
|
@PropertyDef(label = "所属廒间")
|
@Column(name = "ajdh", length = 25)
|
private String ajdh;
|
|
@Column(name = "REMARK_", length = 200)
|
@PropertyDef(label = "备注", description = "备注信息")
|
private String remark;
|
|
@Column(name = "UPDATE_TIME_")
|
@PropertyDef(label = "更新时间")
|
private Date updateTime;
|
|
}
|