package cc.mrbird.febs.mall.vo.clothes; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data @ApiModel(value = "ApiClothesOrderListVo", description = "参数") public class ApiClothesOrderListVo { @ApiModelProperty(value = "订单ID") private Long id; @ApiModelProperty(value = "总价") private BigDecimal amount; @ApiModelProperty(value = "实付款") private BigDecimal realAmount; @ApiModelProperty(value = "类型名称") private String typeName; @ApiModelProperty(value = "类型图片") private String typeImage; @ApiModelProperty(value = "数量") private Integer goodsCnt; @ApiModelProperty(value = "订单状态", example = "状态 1-待支付 2-待发货 3-待收货 4-已完成 5-已取消") private Integer status; }