czt
2025-06-09 13b6ad41f0b057f8405f7976a990e9057547443a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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;
 
}