|
@@ -34,32 +34,28 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -34,32 +34,28 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
34
|
/**
|
34
|
/**
|
|
35
|
* 行业
|
35
|
* 行业
|
|
36
|
*/
|
36
|
*/
|
|
37
|
- @ApiModelProperty(value = "行业", required = true)
|
|
|
|
38
|
- @NotBlank(message = "请输入行业!")
|
37
|
+ @ApiModelProperty(value = "行业")
|
|
39
|
@Length(message = "行业最多允许100个字符!")
|
38
|
@Length(message = "行业最多允许100个字符!")
|
|
40
|
private String industry;
|
39
|
private String industry;
|
|
41
|
|
40
|
|
|
42
|
/**
|
41
|
/**
|
|
43
|
* 品质
|
42
|
* 品质
|
|
44
|
*/
|
43
|
*/
|
|
45
|
- @ApiModelProperty(value = "品质", required = true)
|
|
|
|
46
|
- @NotBlank(message = "请输入品质!")
|
44
|
+ @ApiModelProperty(value = "品质")
|
|
47
|
@Length(message = "品质最多允许100个字符!")
|
45
|
@Length(message = "品质最多允许100个字符!")
|
|
48
|
private String quality;
|
46
|
private String quality;
|
|
49
|
|
47
|
|
|
50
|
/**
|
48
|
/**
|
|
51
|
* 牌号
|
49
|
* 牌号
|
|
52
|
*/
|
50
|
*/
|
|
53
|
- @ApiModelProperty(value = "牌号", required = true)
|
|
|
|
54
|
- @NotBlank(message = "请输入牌号!")
|
51
|
+ @ApiModelProperty(value = "牌号")
|
|
55
|
@Length(message = "牌号最多允许100个字符!")
|
52
|
@Length(message = "牌号最多允许100个字符!")
|
|
56
|
private String brand;
|
53
|
private String brand;
|
|
57
|
|
54
|
|
|
58
|
/**
|
55
|
/**
|
|
59
|
* 厚度
|
56
|
* 厚度
|
|
60
|
*/
|
57
|
*/
|
|
61
|
- @ApiModelProperty(value = "厚度", required = true)
|
|
|
|
62
|
- @NotNull(message = "请输入厚度!")
|
58
|
+ @ApiModelProperty(value = "厚度")
|
|
63
|
@TypeMismatch(message = "厚度格式有误!")
|
59
|
@TypeMismatch(message = "厚度格式有误!")
|
|
64
|
@IsNumberPrecision(message = "厚度最多允许4位小数!", value = 4)
|
60
|
@IsNumberPrecision(message = "厚度最多允许4位小数!", value = 4)
|
|
65
|
private BigDecimal thickness;
|
61
|
private BigDecimal thickness;
|
|
@@ -67,8 +63,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -67,8 +63,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
67
|
/**
|
63
|
/**
|
|
68
|
* 宽度
|
64
|
* 宽度
|
|
69
|
*/
|
65
|
*/
|
|
70
|
- @ApiModelProperty(value = "宽度", required = true)
|
|
|
|
71
|
- @NotNull(message = "请输入宽度!")
|
66
|
+ @ApiModelProperty(value = "宽度")
|
|
72
|
@TypeMismatch(message = "宽度格式有误!")
|
67
|
@TypeMismatch(message = "宽度格式有误!")
|
|
73
|
@IsNumberPrecision(message = "宽度最多允许4位小数!", value = 4)
|
68
|
@IsNumberPrecision(message = "宽度最多允许4位小数!", value = 4)
|
|
74
|
private BigDecimal width;
|
69
|
private BigDecimal width;
|
|
@@ -76,8 +71,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -76,8 +71,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
76
|
/**
|
71
|
/**
|
|
77
|
* 长度
|
72
|
* 长度
|
|
78
|
*/
|
73
|
*/
|
|
79
|
- @ApiModelProperty(value = "长度", required = true)
|
|
|
|
80
|
- @NotNull(message = "请输入长度!")
|
74
|
+ @ApiModelProperty(value = "长度")
|
|
81
|
@TypeMismatch(message = "长度格式有误!")
|
75
|
@TypeMismatch(message = "长度格式有误!")
|
|
82
|
@IsNumberPrecision(message = "长度最多允许4位小数!", value = 4)
|
76
|
@IsNumberPrecision(message = "长度最多允许4位小数!", value = 4)
|
|
83
|
private BigDecimal length;
|
77
|
private BigDecimal length;
|
|
@@ -85,16 +79,14 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -85,16 +79,14 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
85
|
/**
|
79
|
/**
|
|
86
|
* 状态
|
80
|
* 状态
|
|
87
|
*/
|
81
|
*/
|
|
88
|
- @ApiModelProperty(value = "状态", required = true)
|
|
|
|
89
|
- @NotBlank(message = "请输入状态!")
|
82
|
+ @ApiModelProperty(value = "状态")
|
|
90
|
@Length(message = "状态最多允许50个字符!")
|
83
|
@Length(message = "状态最多允许50个字符!")
|
|
91
|
private String status;
|
84
|
private String status;
|
|
92
|
|
85
|
|
|
93
|
/**
|
86
|
/**
|
|
94
|
* 数量
|
87
|
* 数量
|
|
95
|
*/
|
88
|
*/
|
|
96
|
- @ApiModelProperty(value = "数量", required = true)
|
|
|
|
97
|
- @NotNull(message = "请输入数量!")
|
89
|
+ @ApiModelProperty(value = "数量")
|
|
98
|
@TypeMismatch(message = "数量格式有误!")
|
90
|
@TypeMismatch(message = "数量格式有误!")
|
|
99
|
@IsNumberPrecision(message = "数量最多允许4位小数!", value = 4)
|
91
|
@IsNumberPrecision(message = "数量最多允许4位小数!", value = 4)
|
|
100
|
private BigDecimal quantity;
|
92
|
private BigDecimal quantity;
|
|
@@ -102,8 +94,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -102,8 +94,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
102
|
/**
|
94
|
/**
|
|
103
|
* 单价
|
95
|
* 单价
|
|
104
|
*/
|
96
|
*/
|
|
105
|
- @ApiModelProperty(value = "单价", required = true)
|
|
|
|
106
|
- @NotNull(message = "请输入单价!")
|
97
|
+ @ApiModelProperty(value = "单价")
|
|
107
|
@TypeMismatch(message = "单价格式有误!")
|
98
|
@TypeMismatch(message = "单价格式有误!")
|
|
108
|
@IsNumberPrecision(message = "单价最多允许4位小数!", value = 4)
|
99
|
@IsNumberPrecision(message = "单价最多允许4位小数!", value = 4)
|
|
109
|
private BigDecimal unitPrice;
|
100
|
private BigDecimal unitPrice;
|
|
@@ -111,8 +102,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -111,8 +102,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
111
|
/**
|
102
|
/**
|
|
112
|
* 不含税金额
|
103
|
* 不含税金额
|
|
113
|
*/
|
104
|
*/
|
|
114
|
- @ApiModelProperty(value = "不含税金额", required = true)
|
|
|
|
115
|
- @NotNull(message = "请输入不含税金额!")
|
105
|
+ @ApiModelProperty(value = "不含税金额")
|
|
116
|
@TypeMismatch(message = "不含税金额格式有误!")
|
106
|
@TypeMismatch(message = "不含税金额格式有误!")
|
|
117
|
@IsNumberPrecision(message = "不含税金额最多允许2位小数!", value = 2)
|
107
|
@IsNumberPrecision(message = "不含税金额最多允许2位小数!", value = 2)
|
|
118
|
private BigDecimal amountExcludingTax;
|
108
|
private BigDecimal amountExcludingTax;
|
|
@@ -120,8 +110,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -120,8 +110,7 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
120
|
/**
|
110
|
/**
|
|
121
|
* 总金额
|
111
|
* 总金额
|
|
122
|
*/
|
112
|
*/
|
|
123
|
- @ApiModelProperty(value = "总金额", required = true)
|
|
|
|
124
|
- @NotNull(message = "请输入总金额!")
|
113
|
+ @ApiModelProperty(value = "总金额")
|
|
125
|
@TypeMismatch(message = "总金额格式有误!")
|
114
|
@TypeMismatch(message = "总金额格式有误!")
|
|
126
|
@IsNumberPrecision(message = "总金额最多允许2位小数!", value = 2)
|
115
|
@IsNumberPrecision(message = "总金额最多允许2位小数!", value = 2)
|
|
127
|
private BigDecimal totalAmount;
|
116
|
private BigDecimal totalAmount;
|
|
@@ -129,16 +118,14 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -129,16 +118,14 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
129
|
/**
|
118
|
/**
|
|
130
|
* 发货日期
|
119
|
* 发货日期
|
|
131
|
*/
|
120
|
*/
|
|
132
|
- @ApiModelProperty(value = "发货日期", required = true)
|
|
|
|
133
|
- @NotNull(message = "请输入发货日期!")
|
121
|
+ @ApiModelProperty(value = "发货日期")
|
|
134
|
@TypeMismatch(message = "发货日期格式有误!")
|
122
|
@TypeMismatch(message = "发货日期格式有误!")
|
|
135
|
private LocalDate deliveryDate;
|
123
|
private LocalDate deliveryDate;
|
|
136
|
|
124
|
|
|
137
|
/**
|
125
|
/**
|
|
138
|
* 排序
|
126
|
* 排序
|
|
139
|
*/
|
127
|
*/
|
|
140
|
- @ApiModelProperty(value = "排序", required = true)
|
|
|
|
141
|
- @NotNull(message = "请输入排序!")
|
128
|
+ @ApiModelProperty(value = "排序")
|
|
142
|
@TypeMismatch(message = "排序格式有误!")
|
129
|
@TypeMismatch(message = "排序格式有误!")
|
|
143
|
private Integer showOrder;
|
130
|
private Integer showOrder;
|
|
144
|
|
131
|
|
|
@@ -152,48 +139,42 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
@@ -152,48 +139,42 @@ public class CreateContractDistributorLineVo implements BaseVo, Serializable { |
|
152
|
/**
|
139
|
/**
|
|
153
|
* 厚度公差正
|
140
|
* 厚度公差正
|
|
154
|
*/
|
141
|
*/
|
|
155
|
- @ApiModelProperty(value = "厚度公差正", required = true)
|
|
|
|
156
|
- @NotNull(message = "请输入厚度公差正!")
|
142
|
+ @ApiModelProperty(value = "厚度公差正")
|
|
157
|
@TypeMismatch(message = "厚度公差正格式有误!")
|
143
|
@TypeMismatch(message = "厚度公差正格式有误!")
|
|
158
|
private BigDecimal thicknessTolPos;
|
144
|
private BigDecimal thicknessTolPos;
|
|
159
|
|
145
|
|
|
160
|
/**
|
146
|
/**
|
|
161
|
* 厚度公差负
|
147
|
* 厚度公差负
|
|
162
|
*/
|
148
|
*/
|
|
163
|
- @ApiModelProperty(value = "厚度公差负", required = true)
|
|
|
|
164
|
- @NotNull(message = "请输入厚度公差负!")
|
149
|
+ @ApiModelProperty(value = "厚度公差负")
|
|
165
|
@TypeMismatch(message = "厚度公差负格式有误!")
|
150
|
@TypeMismatch(message = "厚度公差负格式有误!")
|
|
166
|
private BigDecimal thicknessTolNeg;
|
151
|
private BigDecimal thicknessTolNeg;
|
|
167
|
|
152
|
|
|
168
|
/**
|
153
|
/**
|
|
169
|
* 宽度公差正
|
154
|
* 宽度公差正
|
|
170
|
*/
|
155
|
*/
|
|
171
|
- @ApiModelProperty(value = "宽度公差正", required = true)
|
|
|
|
172
|
- @NotNull(message = "请输入宽度公差正!")
|
156
|
+ @ApiModelProperty(value = "宽度公差正")
|
|
173
|
@TypeMismatch(message = "宽度公差正格式有误!")
|
157
|
@TypeMismatch(message = "宽度公差正格式有误!")
|
|
174
|
private BigDecimal widthTolPos;
|
158
|
private BigDecimal widthTolPos;
|
|
175
|
|
159
|
|
|
176
|
/**
|
160
|
/**
|
|
177
|
* 宽度公差负
|
161
|
* 宽度公差负
|
|
178
|
*/
|
162
|
*/
|
|
179
|
- @ApiModelProperty(value = "宽度公差负", required = true)
|
|
|
|
180
|
- @NotNull(message = "请输入宽度公差负!")
|
163
|
+ @ApiModelProperty(value = "宽度公差负")
|
|
181
|
@TypeMismatch(message = "宽度公差负格式有误!")
|
164
|
@TypeMismatch(message = "宽度公差负格式有误!")
|
|
182
|
private BigDecimal widthTolNeg;
|
165
|
private BigDecimal widthTolNeg;
|
|
183
|
|
166
|
|
|
184
|
/**
|
167
|
/**
|
|
185
|
* 长度公差正
|
168
|
* 长度公差正
|
|
186
|
*/
|
169
|
*/
|
|
187
|
- @ApiModelProperty(value = "长度公差正", required = true)
|
|
|
|
188
|
- @NotNull(message = "请输入长度公差正!")
|
170
|
+ @ApiModelProperty(value = "长度公差正")
|
|
189
|
@TypeMismatch(message = "长度公差正格式有误!")
|
171
|
@TypeMismatch(message = "长度公差正格式有误!")
|
|
190
|
private BigDecimal lengthTolPos;
|
172
|
private BigDecimal lengthTolPos;
|
|
191
|
|
173
|
|
|
192
|
/**
|
174
|
/**
|
|
193
|
* 长度公差负
|
175
|
* 长度公差负
|
|
194
|
*/
|
176
|
*/
|
|
195
|
- @ApiModelProperty(value = "长度公差负", required = true)
|
|
|
|
196
|
- @NotNull(message = "请输入长度公差负!")
|
177
|
+ @ApiModelProperty(value = "长度公差负")
|
|
197
|
@TypeMismatch(message = "长度公差负格式有误!")
|
178
|
@TypeMismatch(message = "长度公差负格式有误!")
|
|
198
|
private BigDecimal lengthTolNeg;
|
179
|
private BigDecimal lengthTolNeg;
|
|
199
|
|
180
|
|