Commit 662ffd5af0fa3f69dd87db4b516d8bacb21f62e5
1 parent
b739bbf2
feature商品修改
Showing
1 changed file
with
24 additions
and
0 deletions
ereport-core/src/main/java/com/diligrp/etrade/report/domain/vo/OrderProductNewVO.java
... | ... | @@ -56,6 +56,14 @@ public class OrderProductNewVO implements Serializable { |
56 | 56 | @JsonSerialize(using = PieceSerializer.class) |
57 | 57 | private Long productPieces; |
58 | 58 | |
59 | + /** 订单商品件重单位 斤 */ | |
60 | + @JsonSerialize(using = PieceSerializer.class) | |
61 | + private Long productPieceWeight; | |
62 | + | |
63 | + /** 订单商品件价单位 元 */ | |
64 | + @JsonSerialize(using = MoneyF2YJsonSerializer.class) | |
65 | + private Long productPiecePrice; | |
66 | + | |
59 | 67 | /** 订单商品交易类型(1、按重方式,2、按件方式) */ |
60 | 68 | private Integer productTradeType; |
61 | 69 | |
... | ... | @@ -197,6 +205,22 @@ public class OrderProductNewVO implements Serializable { |
197 | 205 | this.productPieces = productPieces; |
198 | 206 | } |
199 | 207 | |
208 | + public Long getProductPieceWeight() { | |
209 | + return productPieceWeight; | |
210 | + } | |
211 | + | |
212 | + public void setProductPieceWeight(Long productPieceWeight) { | |
213 | + this.productPieceWeight = productPieceWeight; | |
214 | + } | |
215 | + | |
216 | + public Long getProductPiecePrice() { | |
217 | + return productPiecePrice; | |
218 | + } | |
219 | + | |
220 | + public void setProductPiecePrice(Long productPiecePrice) { | |
221 | + this.productPiecePrice = productPiecePrice; | |
222 | + } | |
223 | + | |
200 | 224 | public Integer getProductTradeType() { |
201 | 225 | return productTradeType; |
202 | 226 | } | ... | ... |