package com.fzzy.igds.dzhwk.domain;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.fzzy.igds.dzhwk.constant.Constant;
|
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 HScreenSer implements Serializable {
|
|
public static String SORT_PROP = "sn";
|
|
@Id
|
@PropertyDef(label = "货位卡SN")
|
@Column(name = "SN_", length = 100)
|
private String sn;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 40)
|
@PropertyDef(label = "所属分库")
|
private String deptId;
|
|
@PropertyDef(label = "设备名称")
|
@Column(name = "NAME_", length = 100)
|
private String name;
|
|
@PropertyDef(label = "所属廒间")
|
@Column(name = "ajdh", length = 25)
|
private String ajdh;
|
|
@PropertyDef(label = "是否开启", description = "门开灯亮")
|
@Column(name = "IS_OPEN1_", length = 25)
|
private String isOpen1 = Constant.YN_Y;
|
|
@PropertyDef(label = "是否开启", description = "门关等灭")
|
@Column(name = "IS_OPEN2_", length = 25)
|
private String isOPen2 = Constant.YN_Y;
|
|
@PropertyDef(label = "是否开启", description = "安全进仓提醒")
|
@Column(name = "IS_OPEN3", length = 25)
|
private String isOpen3 = Constant.YN_Y;
|
|
@Column(name = "REMARK_", length = 200)
|
@PropertyDef(label = "备注", description = "备注信息")
|
private String remark;
|
|
@Column(name = "UPDATE_TIME_")
|
@PropertyDef(label = "更新时间")
|
private Date updateTime;
|
|
}
|