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; import java.util.List; @Data public class OrderCheckListDTO extends AbstractTransDTO { private String id; private Long partnerId;//合伙人id private String partnerName;//合伙人名称 private Long warehouseId;//仓库id @ApiModelProperty(value = "仓库名称") private String warehouseName; private Long warehouseLocationId;//库位id @ApiModelProperty(value = "库位名称") private String warehouseLocationCode; @ApiModelProperty(value = "订单单号") private String orderNo; @ApiModelProperty(value = "收货人") private String customer; @ApiModelProperty(value = "收货人手机号码") private String customerTel; private String customerProvince; private String customerCity; private String customerRegion; @ApiModelProperty(value = "收货地址") private String customerAddress; @ApiModelProperty(value = "特殊需求") @DictTrans(target = "specialNeedsStr", codeType = "SPEC_REQ") private String specialNeeds; private String specialNeedsStr; @ApiModelProperty(value = "留言") private String remarks; @ApiModelProperty(value = "明细") private List items; private String createBy; private BigDecimal totalAmount;//订单金额 }