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; }