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
package com.xzx.gc.model.order;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class OrderItemVo {
    @ApiModelProperty(value = "订单ID")
    private String orderId;
 
    @ApiModelProperty(value = "物品类型")
    private String itemType;
 
    @ApiModelProperty(value = "物品类型名称")
    private String itemTypeName;
 
    @ApiModelProperty(value = "物品重量", name = "weight")
    private String weight;
 
    @ApiModelProperty(value = "物品数量")
    private String amount;
 
    @ApiModelProperty(value = "物品金额")
    private String money;
 
    @ApiModelProperty(value = "入库单ID")
    private String storageId;
 
    @ApiModelProperty(value = "入库状态")
    private String flag;
 
    @ApiModelProperty(value = "物品单价")
    private String price;
 
    @ApiModelProperty(value = "物品类型图片")
    private String picture;
 
    @ApiModelProperty("第二价格")
    private String secondPrice;
 
}