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
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
166
167
168
169
170
171
package com.gk.firework.Domain.Vo;
 
import com.gk.firework.Domain.ProductInfo;
 
import java.math.BigDecimal;
 
public class Product2JsonVo  {
 
    private Long id;
    //产品数量
    private Integer num;
    //
    /** 产品名(限制长度255)  name **/
    private String name;
 
    /** 流向码(十位)  directionCode **/
    private String directionCode;
 
//    /** 进价  purchasePrice **/
//    private BigDecimal purchasePrice;
//
//    /** 售价  salePrice **/
//    private BigDecimal salePrice;
 
    /** 生产厂家  manufacturer **/
    private String manufacturer;
 
    /** 规格(一般为2位字母数字组合)  specification **/
    private String specification;
 
    /** 含药量(一般为数字,部分含有单位)  explosiveContent **/
    private BigDecimal explosiveContent;
 
    /** (烟花爆竹)类型(爆竹类,单个爆竹类,喷花类,日景烟花,吐珠类,造型玩具类,玩具烟花类,线香类,组合类,组合烟花,组合烟花类,组合盆花类,鞭炮类,火箭类,旋转类,升空类,旋转升空类,冷光类,烟雾类,摩擦类,小礼花类,礼花弹类,架子烟类,引火线,黑火药,烟火药,氯酸钾,精品礼品箱类,彩箱烟花类,单个爆竹类,玩具类,同类组合烟花)  type **/
    private String type;
 
    private String secondaryType;
 
    /** 产品等级(ABCD级)  level **/
    private String level;
 
    /** 箱含量(正整数)  boxNumber **/
    private Integer boxNumber;
 
    /** 包装方式  packing **/
    private String packing;
 
    //进价
    private BigDecimal price;
 
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDirectionCode() {
        return directionCode;
    }
 
    public void setDirectionCode(String directionCode) {
        this.directionCode = directionCode;
    }
 
//    public BigDecimal getPurchasePrice() {
//        return purchasePrice;
//    }
//
//    public void setPurchasePrice(BigDecimal purchasePrice) {
//        this.purchasePrice = purchasePrice;
//    }
//
//    public BigDecimal getSalePrice() {
//        return salePrice;
//    }
//
//    public void setSalePrice(BigDecimal salePrice) {
//        this.salePrice = salePrice;
//    }
 
    public String getManufacturer() {
        return manufacturer;
    }
 
    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer;
    }
 
    public String getSpecification() {
        return specification;
    }
 
    public void setSpecification(String specification) {
        this.specification = specification;
    }
 
    public BigDecimal getExplosiveContent() {
        return explosiveContent;
    }
 
    public void setExplosiveContent(BigDecimal explosiveContent) {
        this.explosiveContent = explosiveContent;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getSecondaryType() {
        return secondaryType;
    }
 
    public void setSecondaryType(String secondaryType) {
        this.secondaryType = secondaryType;
    }
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public Integer getBoxNumber() {
        return boxNumber;
    }
 
    public void setBoxNumber(Integer boxNumber) {
        this.boxNumber = boxNumber;
    }
 
    public String getPacking() {
        return packing;
    }
 
    public void setPacking(String packing) {
        this.packing = packing;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
}