czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
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
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;
 
/**
 * 进出仓记录实体
 */
@Data
@Entity
@Table(name = "H_INOUT_DEPOT_RECORD")
public class InoutDepotRecord implements Serializable {
 
 
    @Id
    @Column(name = "jccdh", length = 40)
    @PropertyDef(label = "单号" )
    private String jccdh;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 40)
    @PropertyDef(label = "所属分库")
    private String deptId;
 
    @Column(name = "ajdm", length = 10)
    @PropertyDef(label = "廒间代码" )
    private String ajdm;
 
    @Column(name = "jcry", length = 10)
    @PropertyDef(label = "进出仓人员" )
    private String jcry;
 
    @Column(name = "jcsj", length = 10)
    @PropertyDef(label = "进仓时间" )
    private Date jcsj;
 
    @Column(name = "ccsj", length = 10)
    @PropertyDef(label = "出仓时间" )
    private Date ccsj;
 
    @Column(name = "jcmd", length = 10)
    @PropertyDef(label = "入仓目的" )
    private String jcmd;
 
    @Column(name = "jcsm", length = 10)
    @PropertyDef(label = "入仓说明" )
    private String jcsm;
 
    @Column(name = "zhgxsj", length = 10)
    @PropertyDef(label = "更新时间" )
    private Date zhgxsj;
 
}