123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- package com.kmall.admin.haikong.dto;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.*;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * 订单主信息
- * @author lhm
- * @createDate 2021-12-07
- */
- public class OrderInfoDTO implements Serializable {
- private static final long serialVersionUID = -1110285187874182199L;
- @JsonProperty("outer_order_no")
- private String outerOrderNo;
- @JsonProperty("pay_app")
- private String payApp;
- /**
- * 默认:SF
- */
- @JsonProperty("dlytype_code")
- private String dlytypeCode;
- @JsonProperty("consignee_name")
- private String consigneeName;
- @JsonProperty("consignee_area_province")
- private String consigneeAreaProvince;
- @JsonProperty("consignee_area_city")
- private String consigneeAreaCity;
- @JsonProperty("consignee_area_county")
- private String consigneeAreaCounty;
- @JsonProperty("consignee_address")
- private String consigneeAddress;
- @JsonProperty("consignee_zip")
- private String consigneeZip;
- @JsonProperty("consignee_tel")
- private String consigneeTel;
- @JsonProperty("consignee_email")
- private String consigneeEmail;
- @JsonProperty("consignee_mobile")
- private String consigneeMobile;
- private String weight;
- private Integer quantity;
- @JsonProperty("order_total")
- private BigDecimal orderTotal;
- private String platform;
- /**
- * 商品优惠后总金额
- */
- @JsonProperty("finally_cart_amount")
- private BigDecimal finallyCartAmount;
- public String getOuterOrderNo() {
- return outerOrderNo;
- }
- public void setOuterOrderNo(String outerOrderNo) {
- this.outerOrderNo = outerOrderNo;
- }
- public String getPayApp() {
- return payApp;
- }
- public void setPayApp(String payApp) {
- this.payApp = payApp;
- }
- public String getDlytypeCode() {
- return dlytypeCode;
- }
- public void setDlytypeCode(String dlytypeCode) {
- this.dlytypeCode = dlytypeCode;
- }
- public String getConsigneeName() {
- return consigneeName;
- }
- public void setConsigneeName(String consigneeName) {
- this.consigneeName = consigneeName;
- }
- public String getConsigneeAreaProvince() {
- return consigneeAreaProvince;
- }
- public void setConsigneeAreaProvince(String consigneeAreaProvince) {
- this.consigneeAreaProvince = consigneeAreaProvince;
- }
- public String getConsigneeAreaCity() {
- return consigneeAreaCity;
- }
- public void setConsigneeAreaCity(String consigneeAreaCity) {
- this.consigneeAreaCity = consigneeAreaCity;
- }
- public String getConsigneeAreaCounty() {
- return consigneeAreaCounty;
- }
- public void setConsigneeAreaCounty(String consigneeAreaCounty) {
- this.consigneeAreaCounty = consigneeAreaCounty;
- }
- public String getConsigneeAddress() {
- return consigneeAddress;
- }
- public void setConsigneeAddress(String consigneeAddress) {
- this.consigneeAddress = consigneeAddress;
- }
- public String getConsigneeZip() {
- return consigneeZip;
- }
- public void setConsigneeZip(String consigneeZip) {
- this.consigneeZip = consigneeZip;
- }
- public String getConsigneeTel() {
- return consigneeTel;
- }
- public void setConsigneeTel(String consigneeTel) {
- this.consigneeTel = consigneeTel;
- }
- public String getConsigneeEmail() {
- return consigneeEmail;
- }
- public void setConsigneeEmail(String consigneeEmail) {
- this.consigneeEmail = consigneeEmail;
- }
- public String getConsigneeMobile() {
- return consigneeMobile;
- }
- public void setConsigneeMobile(String consigneeMobile) {
- this.consigneeMobile = consigneeMobile;
- }
- public String getWeight() {
- return weight;
- }
- public void setWeight(String weight) {
- this.weight = weight;
- }
- public Integer getQuantity() {
- return quantity;
- }
- public void setQuantity(Integer quantity) {
- this.quantity = quantity;
- }
- public BigDecimal getOrderTotal() {
- return orderTotal;
- }
- public void setOrderTotal(BigDecimal orderTotal) {
- this.orderTotal = orderTotal;
- }
- public String getPlatform() {
- return platform;
- }
- public void setPlatform(String platform) {
- this.platform = platform;
- }
- public BigDecimal getFinallyCartAmount() {
- return finallyCartAmount;
- }
- public void setFinallyCartAmount(BigDecimal finallyCartAmount) {
- this.finallyCartAmount = finallyCartAmount;
- }
- @Override
- public String toString() {
- return "OrderInfoDTO{" +
- "outerOrderNo='" + outerOrderNo + '\'' +
- ", payApp='" + payApp + '\'' +
- ", dlytypeCode='" + dlytypeCode + '\'' +
- ", consigneeName='" + consigneeName + '\'' +
- ", consigneeAreaProvince='" + consigneeAreaProvince + '\'' +
- ", consigneeAreaCity='" + consigneeAreaCity + '\'' +
- ", consigneeAreaCounty='" + consigneeAreaCounty + '\'' +
- ", consigneeAddress='" + consigneeAddress + '\'' +
- ", consigneeZip='" + consigneeZip + '\'' +
- ", consigneeTel='" + consigneeTel + '\'' +
- ", consigneeEmail='" + consigneeEmail + '\'' +
- ", consigneeMobile='" + consigneeMobile + '\'' +
- ", weight='" + weight + '\'' +
- ", quantity='" + quantity + '\'' +
- ", orderTotal=" + orderTotal +
- ", finallyCartAmount=" + finallyCartAmount +
- ", platform='" + platform + '\'' +
- '}';
- }
- }
|