郑永安
2023-06-19 59e91a4e9ddaf23cebb12993c774aa899ab22d16
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
@TableName("entrydetail")
public class EntryDetailInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    /**   id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 入库单编码  entryorder **/
    private String entryorder;
 
    /** 流向码(19位或者22位)  directioncode **/
    private String directioncode;
 
    /** 商品编码  itemcode **/
    private String itemcode;
 
    /** 商品名称  productname **/
    private String productname;
 
    /** 数量:19位流向码为1;22位流向码为后三位表示的数量  num **/
    private Integer num;
 
    /** 包装码  boxcode **/
    private String boxcode;
 
    /** 生产厂家  manufacturer **/
    private String manufacturer;
 
    /** 创建时间  createddate **/
    private Date createddate;
 
    /** 更新时间  modifieddate **/
    private Date modifieddate;
 
    private String createdby;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   入库单编码  entryorder   **/
    public String getEntryorder() {
        return entryorder;
    }
 
    /**   入库单编码  entryorder   **/
    public void setEntryorder(String entryorder) {
        this.entryorder = entryorder == null ? null : entryorder.trim();
    }
 
    /**   流向码(19位或者22位)  directioncode   **/
    public String getDirectioncode() {
        return directioncode;
    }
 
    /**   流向码(19位或者22位)  directioncode   **/
    public void setDirectioncode(String directioncode) {
        this.directioncode = directioncode == null ? null : directioncode.trim();
    }
 
    /**   商品名称  productname   **/
    public String getProductname() {
        return productname;
    }
 
    /**   商品名称  productname   **/
    public void setProductname(String productname) {
        this.productname = productname == null ? null : productname.trim();
    }
 
    /**   包装码  boxcode   **/
    public String getBoxcode() {
        return boxcode;
    }
 
    /**   包装码  boxcode   **/
    public void setBoxcode(String boxcode) {
        this.boxcode = boxcode == null ? null : boxcode.trim();
    }
 
    /**   生产厂家  manufacturer   **/
    public String getManufacturer() {
        return manufacturer;
    }
 
    /**   生产厂家  manufacturer   **/
    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer == null ? null : manufacturer.trim();
    }
 
    /**   创建时间  createddate   **/
    public Date getCreateddate() {
        return createddate;
    }
 
    /**   创建时间  createddate   **/
    public void setCreateddate(Date createddate) {
        this.createddate = createddate;
    }
 
    /**   更新时间  modifieddate   **/
    public Date getModifieddate() {
        return modifieddate;
    }
 
    /**   更新时间  modifieddate   **/
    public void setModifieddate(Date modifieddate) {
        this.modifieddate = modifieddate;
    }
 
    public String getItemcode() {
        return itemcode;
    }
 
    public void setItemcode(String itemcode) {
        this.itemcode = itemcode;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getCreatedby() {
        return createdby;
    }
 
    public void setCreatedby(String createdby) {
        this.createdby = createdby;
    }
 
    public EntryDetailInfo() {
    }
 
    public EntryDetailInfo(String entryorder, String directioncode, String itemcode, String productname, String manufacturer, Date createddate, String createdby) {
        this.entryorder = entryorder;
        this.directioncode = directioncode;
        this.itemcode = itemcode;
        this.productname = productname;
        this.manufacturer = manufacturer;
        this.createddate = createddate;
        this.createdby = createdby;
    }
}