package com.mzl.flower.dto.response.payment;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
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 OrderItemListDTO extends AbstractTransDTO {
|
private String id;
|
|
private Long stationId;//集货站id
|
private String stationName;
|
|
@ApiModelProperty(value = "商品名称")
|
private String flowerName;
|
|
@ApiModelProperty(value = "商品单位")
|
private String flowerUnit;
|
|
@ApiModelProperty(value = "商品颜色")
|
private String flowerColor;
|
|
@ApiModelProperty(value = "商品封面")
|
private String flowerCover;
|
|
@ApiModelProperty(value = "商品等级")
|
@DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL")
|
private String flowerLevel;
|
private String flowerLevelStr;
|
|
@ApiModelProperty(value = "商品分类")
|
private String flowerCategory;
|
|
@ApiModelProperty(value = "数量")
|
private Integer num;
|
|
@ApiModelProperty(value = "供应商名称")
|
private String supplierName;
|
|
@ApiModelProperty(value = "供应商联系电话")
|
private String supplierTel;
|
|
@ApiModelProperty(value = "商品售价")
|
private BigDecimal price;
|
|
@ApiModelProperty(value = "总金额")
|
private BigDecimal total;
|
|
@ApiModelProperty(value = "优惠券金额/扎")
|
private BigDecimal couponAmount;
|
|
@ApiModelProperty(value = "优惠前售价/扎")
|
private BigDecimal originalPrice;
|
|
@ApiModelProperty(value = "真实成交价格/每扎")
|
private BigDecimal realPrice;
|
}
|