package com.ishop.model.response; import java.util.List; /** * 订单移动端详情 * @date 2023-07-13 */ public class OrderFrontDetailResponse { public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getOrderNo() { return orderNo; } public void setOrderNo(String orderNo) { this.orderNo = orderNo; } public Integer getMerId() { return merId; } public void setMerId(Integer merId) { this.merId = merId; } public Long getUid() { return uid; } public void setUid(Long uid) { this.uid = uid; } public Integer getTotalNum() { return totalNum; } public void setTotalNum(Integer totalNum) { this.totalNum = totalNum; } public Double getProTotalPrice() { return proTotalPrice; } public void setProTotalPrice(Double proTotalPrice) { this.proTotalPrice = proTotalPrice; } public Double getTotalPostage() { return totalPostage; } public void setTotalPostage(Double totalPostage) { this.totalPostage = totalPostage; } public Double getTotalPrice() { return totalPrice; } public void setTotalPrice(Double totalPrice) { this.totalPrice = totalPrice; } public Double getCouponPrice() { return couponPrice; } public void setCouponPrice(Double couponPrice) { this.couponPrice = couponPrice; } public Integer getUseIntegral() { return useIntegral; } public void setUseIntegral(Integer useIntegral) { this.useIntegral = useIntegral; } public Double getIntegralPrice() { return integralPrice; } public void setIntegralPrice(Double integralPrice) { this.integralPrice = integralPrice; } public Double getPayPrice() { return payPrice; } public void setPayPrice(Double payPrice) { this.payPrice = payPrice; } public Double getPayPostage() { return payPostage; } public void setPayPostage(Double payPostage) { this.payPostage = payPostage; } public Boolean getPaid() { return paid; } public void setPaid(Boolean paid) { this.paid = paid; } public Long getPayTime() { return payTime; } public void setPayTime(Long payTime) { this.payTime = payTime; } public String getPayType() { return payType; } public void setPayType(String payType) { this.payType = payType; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Long getCreateTime() { return createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public List getMerchantOrderList() { return merchantOrderList; } public void setMerchantOrderList(List merchantOrderList) { this.merchantOrderList = merchantOrderList; } // @ApiModelProperty(value = "订单ID") private Long id; // @ApiModelProperty(value = "订单号") private String orderNo; // @ApiModelProperty(value = "商户ID") private Integer merId; // @ApiModelProperty(value = "用户id") private Long uid; // @ApiModelProperty(value = "订单商品总数") private Integer totalNum; // @ApiModelProperty(value = "商品总价") private Double proTotalPrice; // @ApiModelProperty(value = "邮费") private Double totalPostage; // @ApiModelProperty(value = "订单总价") private Double totalPrice; // @ApiModelProperty(value = "优惠券金额") private Double couponPrice; // @ApiModelProperty(value = "使用积分") private Integer useIntegral; // @ApiModelProperty(value = "积分抵扣金额") private Double integralPrice; // @ApiModelProperty(value = "实际支付金额") private Double payPrice; // @ApiModelProperty(value = "支付邮费") private Double payPostage; // @ApiModelProperty(value = "支付状态") private Boolean paid; // @ApiModelProperty(value = "支付时间") private Long payTime; // @ApiModelProperty(value = "支付方式:weixin,alipay,yue") private String payType; // @ApiModelProperty(value = "订单状态(0:待支付,1:待发货,2:待收货,3:已收货,4:已完成,5:待核销,9:已取消)") private Integer status; // @ApiModelProperty(value = "创建时间") private Long createTime; // @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单,2-秒杀订单") private Integer type; // @ApiModelProperty(value = "订单详情") private List merchantOrderList; }