package com.ishop.model.response; import com.ishop.model.vo.OrderDetailFrontVo; import java.util.List; /** * 订单移动端商户详情响应 * @date 2023-07-13 */ public class MerchantOrderFrontDetailResponse { public Integer getMerId() { return merId; } public void setMerId(Integer merId) { this.merId = merId; } public String getRealName() { return realName; } public void setRealName(String realName) { this.realName = realName; } public String getUserPhone() { return userPhone; } public void setUserPhone(String userPhone) { this.userPhone = userPhone; } public String getUserAddress() { return userAddress; } public void setUserAddress(String userAddress) { this.userAddress = userAddress; } 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 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 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 Integer getCouponId() { return couponId; } public void setCouponId(Integer couponId) { this.couponId = couponId; } public Double getCouponPrice() { return couponPrice; } public void setCouponPrice(Double couponPrice) { this.couponPrice = couponPrice; } public Integer getGainIntegral() { return gainIntegral; } public void setGainIntegral(Integer gainIntegral) { this.gainIntegral = gainIntegral; } public String getUserRemark() { return userRemark; } public void setUserRemark(String userRemark) { this.userRemark = userRemark; } public Integer getShippingType() { return shippingType; } public void setShippingType(Integer shippingType) { this.shippingType = shippingType; } public String getVerifyCode() { return verifyCode; } public void setVerifyCode(String verifyCode) { this.verifyCode = verifyCode; } public String getDeliveryType() { return deliveryType; } public void setDeliveryType(String deliveryType) { this.deliveryType = deliveryType; } public String getMerName() { return merName; } public void setMerName(String merName) { this.merName = merName; } public String getMerPhone() { return merPhone; } public void setMerPhone(String merPhone) { this.merPhone = merPhone; } public String getMerProvince() { return merProvince; } public void setMerProvince(String merProvince) { this.merProvince = merProvince; } public String getMerCity() { return merCity; } public void setMerCity(String merCity) { this.merCity = merCity; } public String getMerDistrict() { return merDistrict; } public void setMerDistrict(String merDistrict) { this.merDistrict = merDistrict; } public String getMerAddressDetail() { return merAddressDetail; } public void setMerAddressDetail(String merAddressDetail) { this.merAddressDetail = merAddressDetail; } public String getMerLatitude() { return merLatitude; } public void setMerLatitude(String merLatitude) { this.merLatitude = merLatitude; } public String getMerLongitude() { return merLongitude; } public void setMerLongitude(String merLongitude) { this.merLongitude = merLongitude; } public List getOrderInfoList() { return orderInfoList; } public void setOrderInfoList(List orderInfoList) { this.orderInfoList = orderInfoList; } // @ApiModelProperty(value = "商户ID") private Integer merId; // @ApiModelProperty(value = "收货人姓名") private String realName; // @ApiModelProperty(value = "收货人电话") private String userPhone; // @ApiModelProperty(value = "收货详细地址") private String userAddress; // @ApiModelProperty(value = "订单商品总数") private Integer totalNum; // @ApiModelProperty(value = "商品总价") private Double proTotalPrice; // @ApiModelProperty(value = "邮费") private Double totalPostage; // @ApiModelProperty(value = "订单总价") private Double totalPrice; // @ApiModelProperty(value = "实际支付金额") private Double payPrice; // @ApiModelProperty(value = "支付邮费") private Double payPostage; // @ApiModelProperty(value = "使用积分") private Integer useIntegral; // @ApiModelProperty(value = "积分抵扣金额") private Double integralPrice; // @ApiModelProperty(value = "优惠券id") private Integer couponId; // @ApiModelProperty(value = "优惠券金额") private Double couponPrice; // @ApiModelProperty(value = "赠送积分") private Integer gainIntegral; // @ApiModelProperty(value = "用户备注") private String userRemark; // @ApiModelProperty(value = "配送方式 1=快递 ,2=门店自提") private Integer shippingType; // @ApiModelProperty(value = "核销码") private String verifyCode; // @ApiModelProperty(value = "发货类型:express-快递,fictitious:虚拟发货") private String deliveryType; // @ApiModelProperty(value = "商户名称") private String merName; // @ApiModelProperty(value = "商户手机号") private String merPhone; // @ApiModelProperty(value = "省") private String merProvince; // @ApiModelProperty(value = "市") private String merCity; // @ApiModelProperty(value = "区") private String merDistrict; // @ApiModelProperty(value = "商户详细地址") private String merAddressDetail; // @ApiModelProperty(value = "纬度") private String merLatitude; // @ApiModelProperty(value = "经度") private String merLongitude; // @ApiModelProperty(value = "订单详情") private List orderInfoList; }