gdg
2020-12-23 6207311d7df3d47d27fdd78de33f49875550f52f
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
package com.nanometer.smartlab.entity;
 
import com.nanometer.smartlab.entity.enumtype.ReplaceDictType;
 
import java.io.Serializable;
import java.util.Date;
 
public class EncodeReplaceDict implements Serializable {
    /** id  id **/
    private Long id;
 
    /** 三种类型:1.厂家,2.规格,3.包装  type **/
    private ReplaceDictType type;
 
    /** 编号  number **/
    private String number;
 
    /** 信息  info **/
    private String info;
 
    /** 信息简写  abbreviation **/
    private String abbreviation;
 
    /** 创建者  creator **/
    private String creator;
 
    /** 更新时间  update_time **/
    private Date updateTime;
 
    /**   valid_flag **/
    private Integer validFlag;
 
    /**   id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   三种类型:1.厂家,2.规格,3.包装  type   **/
    public ReplaceDictType getType() {
        return type;
    }
 
    /**   三种类型:1.厂家,2.规格,3.包装  type   **/
    public void setType(ReplaceDictType type) {
        this.type = type;
    }
 
    /**   编号  number   **/
    public String getNumber() {
        return number;
    }
 
    /**   编号  number   **/
    public void setNumber(String number) {
        this.number = number == null ? null : number.trim();
    }
 
    /**   信息  info   **/
    public String getInfo() {
        return info;
    }
 
    /**   信息  info   **/
    public void setInfo(String info) {
        this.info = info == null ? null : info.trim();
    }
 
    /**   信息简写  abbreviation   **/
    public String getAbbreviation() {
        return abbreviation;
    }
 
    /**   信息简写  abbreviation   **/
    public void setAbbreviation(String abbreviation) {
        this.abbreviation = abbreviation == null ? null : abbreviation.trim();
    }
 
    /**   创建者  creator   **/
    public String getCreator() {
        return creator;
    }
 
    /**   创建者  creator   **/
    public void setCreator(String creator) {
        this.creator = creator == null ? null : creator.trim();
    }
 
    /**   更新时间  update_time   **/
    public Date getUpdateTime() {
        return updateTime;
    }
 
    /**   更新时间  update_time   **/
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    /**     valid_flag   **/
    public Integer getValidFlag() {
        return validFlag;
    }
 
    /**     valid_flag   **/
    public void setValidFlag(Integer validFlag) {
        this.validFlag = validFlag;
    }
}