Helius
2021-08-05 fdb91cc72f7cbe8c095a1ce6442c9259ff01ff06
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
package com.xzx.gc.model.order;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class OrderItemReq {
    @ApiModelProperty(value = "订单ID", name = "orderId")
    private String orderId;
 
    @ApiModelProperty(value = "物品类型", name = "itemType")
    private String itemType;
 
    @ApiModelProperty(value = "物品重量", name = "weight")
    private String weight;
 
    @ApiModelProperty(value = "物品数量", name = "amount")
    private String amount;
 
    @ApiModelProperty(value = "物品金额", name = "money")
    private String money;
 
    @ApiModelProperty(value = "入库单ID", name = "storageId")
    private String storageId;
 
    @ApiModelProperty(value = "入库状态", name = "flag")
    private String flag;
 
    @ApiModelProperty(value = "单价")
    private String price;
 
    @ApiModelProperty("回收员指定价格")
    private String userPrice;
 
    @ApiModelProperty("区ID")
    private String townId;
 
    private List<OrderItemReq> list;
 
}