Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
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("deliverydetail")
public class DeliveryDetailInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 出库单号  deliverycode **/
    private String deliverycode;
 
    /** 商品编码(10位)  itemcode **/
    private String itemcode;
 
    /** 商品名称  itemname **/
    private String itemname;
 
    /** 流向码(19位或22位)  directioncode **/
    private String directioncode;
 
    /** 创建时间  createat **/
    private Date createat;
 
    /** 创建人  createby **/
    private String createby;
 
    private Integer num;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   出库单号  deliverycode   **/
    public String getDeliverycode() {
        return deliverycode;
    }
 
    /**   出库单号  deliverycode   **/
    public void setDeliverycode(String deliverycode) {
        this.deliverycode = deliverycode == null ? null : deliverycode.trim();
    }
 
    /**   商品编码(10位)  itemcode   **/
    public String getItemcode() {
        return itemcode;
    }
 
    /**   商品编码(10位)  itemcode   **/
    public void setItemcode(String itemcode) {
        this.itemcode = itemcode == null ? null : itemcode.trim();
    }
 
    /**   商品名称  itemname   **/
    public String getItemname() {
        return itemname;
    }
 
    /**   商品名称  itemname   **/
    public void setItemname(String itemname) {
        this.itemname = itemname == null ? null : itemname.trim();
    }
 
    /**   流向码(19位或22位)  directioncode   **/
    public String getDirectioncode() {
        return directioncode;
    }
 
    /**   流向码(19位或22位)  directioncode   **/
    public void setDirectioncode(String directioncode) {
        this.directioncode = directioncode == null ? null : directioncode.trim();
    }
 
    /**   创建时间  createat   **/
    public Date getCreateat() {
        return createat;
    }
 
    /**   创建时间  createat   **/
    public void setCreateat(Date createat) {
        this.createat = createat;
    }
 
    /**   创建人  createby   **/
    public String getCreateby() {
        return createby;
    }
 
    /**   创建人  createby   **/
    public void setCreateby(String createby) {
        this.createby = createby == null ? null : createby.trim();
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
}