czt
2025-06-09 13b6ad41f0b057f8405f7976a990e9057547443a
igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/HScreenSer.java
ÎļþÃû´Ó igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/ScreenSer.java ÐÞ¸Ä
@@ -1,6 +1,7 @@
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;
@@ -17,14 +18,14 @@
@Data
@Entity
@Table(name = "H_SCREEN_SER")
public class ScreenSer implements Serializable {
public class HScreenSer implements Serializable {
    public static String SORT_PROP = "id";
    public static String SORT_PROP = "sn";
    @Id
    @PropertyDef(label = "主键ID")
    @Column(name = "ID_", length = 40)
    private String id;
    @PropertyDef(label = "货位卡SN")
    @Column(name = "SN_", length = 100)
    private String sn;
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
@@ -34,10 +35,6 @@
    @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;
@@ -46,6 +43,18 @@
    @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;