package com.mzl.flower.dto.response.payment; import com.mzl.flower.base.AbstractTransDTO; import com.mzl.flower.base.annotation.DictTrans; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data public class DeliveryOrderItemListDTO extends AbstractTransDTO { private String id; @ApiModelProperty(value = "订单单号") private String orderNo; @ApiModelProperty(value = "仓库名称") private String warehouseName; @ApiModelProperty(value = "库位名称") private String warehouseLocationCode; @ApiModelProperty(value = "商品名称") private String flowerName; @ApiModelProperty(value = "商品等级") @DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL") private String flowerLevel; private String flowerLevelStr; @ApiModelProperty(value = "商品单位") private String flowerUnit; @ApiModelProperty(value = "商品颜色") private String flowerColor; @ApiModelProperty(value = "商品封面") private String flowerCover; @ApiModelProperty(value = "数量") private Integer num; @ApiModelProperty(value = "价格") private BigDecimal price; }