.APPEND 和.INCLUDE有什么区别

SAP提供了两种方法来增强table和structure的字段:
l Structures
l Customizing includes(CI includes)
这两种方式都可以给table增加字段而不需要改变table本身。Append structure只能分配给一个表,不过一个table可以分配多个structure。Append structure和include structure的区别在于指向table的方式不同。如果要通过include structure为表增加字段必须在table增加include行。Table指向的是substructure。而对于append structure它指向的是table所以对于table本身没有任何改变。对于append structure sap的开发人员不需要考虑任何事情。一个append structure只能分配给一个table,相反对于include structure,include语句必须在sap table或structure中存在。这必须被sap开发人员预留。
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.baidu.dev2.api.sdk.platorderbusinessquery.model; import com.baidu.dev2.thirdparty.jackson.annotation.JsonInclude; import com.baidu.dev2.thirdparty.jackson.annotation.JsonProperty; import com.baidu.dev2.thirdparty.jackson.annotation.JsonPropertyOrder; import com.baidu.dev2.thirdparty.jackson.annotation.JsonTypeName; import com.baidu.dev2.thirdparty.jackson.annotation.JsonInclude.Include; import com.baidu.dev2.thirdparty.javax.annotation.Nullable; import com.baidu.dev2.thirdparty.swagger.annotations.ApiModelProperty; import java.util.ArrayList; import java.util.List; import java.util.Objects; @JsonPropertyOrder({"orderTotalAmount", "paymentAmount", "freightAmount", "platCouponDiscountAmount", "bizCouponDiscountAmount", "platPromotionDiscountAmount", "bizPromotionDiscountAmount", "orderDetailNew", "partConsign", "productTotalAmount", "platRedPacketDiscountAmount", "duePayTime", "adjustPriceAmount", "orderPayTime", "orderId", "refundId", "orderType", "createTime", "orderStatus", "orderStatusText", "receiver", "receiverMobile", "receiverAddress", "message", "remark", "expressInfo", "trackingNumber", "expressName", "consignTime", "ucId", "expressStatus", "expressStatusText", "orderTypeText", "clickTypeText", "provinceName", "cityName", "areaName", "townName", "address", "appId"}) @JsonTypeName("PlatOrderPartConsignInfoVo") public class PlatOrderPartConsignInfoVo { public static final String JSON_PROPERTY_ORDER_TOTAL_AMOUNT = "orderTotalAmount"; private String orderTotalAmount; public static final String JSON_PROPERTY_PAYMENT_AMOUNT = "paymentAmount"; private String paymentAmount; public static final String JSON_PROPERTY_FREIGHT_AMOUNT = "freightAmount"; private String freightAmount; public static final String JSON_PROPERTY_PLAT_COUPON_DISCOUNT_AMOUNT = "platCouponDiscountAmount"; private String platCouponDiscountAmount; public static final String JSON_PROPERTY_BIZ_COUPON_DISCOUNT_AMOUNT = "bizCouponDiscountAmount"; private String bizCouponDiscountAmount; public static final String JSON_PROPERTY_PLAT_PROMOTION_DISCOUNT_AMOUNT = "platPromotionDiscountAmount"; private String platPromotionDiscountAmount; public static final String JSON_PROPERTY_BIZ_PROMOTION_DISCOUNT_AMOUNT = "bizPromotionDiscountAmount"; private String bizPromotionDiscountAmount; public static final String JSON_PROPERTY_ORDER_DETAIL_NEW = "orderDetailNew"; private List<PlatOrderDetailPartConsignVo> orderDetailNew = null; public static final String JSON_PROPERTY_PART_CONSIGN = "partConsign"; private Integer partConsign; public static final String JSON_PROPERTY_PRODUCT_TOTAL_AMOUNT = "productTotalAmount"; private String productTotalAmount; public static final String JSON_PROPERTY_PLAT_RED_PACKET_DISCOUNT_AMOUNT = "platRedPacketDiscountAmount"; private String platRedPacketDiscountAmount; public static final String JSON_PROPERTY_DUE_PAY_TIME = "duePayTime"; private String duePayTime; public static final String JSON_PROPERTY_ADJUST_PRICE_AMOUNT = "adjustPriceAmount"; private String adjustPriceAmount; public static final String JSON_PROPERTY_ORDER_PAY_TIME = "orderPayTime"; private String orderPayTime; public static final String JSON_PROPERTY_ORDER_ID = "orderId"; private String orderId; public static final String JSON_PROPERTY_REFUND_ID = "refundId"; private String refundId; public static final String JSON_PROPERTY_ORDER_TYPE = "orderType"; private Integer orderType; public static final String JSON_PROPERTY_CREATE_TIME = "createTime"; private String createTime; public static final String JSON_PROPERTY_ORDER_STATUS = "orderStatus"; private Integer orderStatus; public static final String JSON_PROPERTY_ORDER_STATUS_TEXT = "orderStatusText"; private String orderStatusText; public static final String JSON_PROPERTY_RECEIVER = "receiver"; private String receiver; public static final String JSON_PROPERTY_RECEIVER_MOBILE = "receiverMobile"; private String receiverMobile; public static final String JSON_PROPERTY_RECEIVER_ADDRESS = "receiverAddress"; private String receiverAddress; public static final String JSON_PROPERTY_MESSAGE = "message"; private String message; public static final String JSON_PROPERTY_REMARK = "remark"; private String remark; public static final String JSON_PROPERTY_EXPRESS_INFO = "expressInfo"; private String expressInfo; public static final String JSON_PROPERTY_TRACKING_NUMBER = "trackingNumber"; private String trackingNumber; public static final String JSON_PROPERTY_EXPRESS_NAME = "expressName"; private String expressName; public static final String JSON_PROPERTY_CONSIGN_TIME = "consignTime"; private String consignTime; public static final String JSON_PROPERTY_UC_ID = "ucId"; private String ucId; public static final String JSON_PROPERTY_EXPRESS_STATUS = "expressStatus"; private Integer expressStatus; public static final String JSON_PROPERTY_EXPRESS_STATUS_TEXT = "expressStatusText"; private String expressStatusText; public static final String JSON_PROPERTY_ORDER_TYPE_TEXT = "orderTypeText"; private String orderTypeText; public static final String JSON_PROPERTY_CLICK_TYPE_TEXT = "clickTypeText"; private String clickTypeText; public static final String JSON_PROPERTY_PROVINCE_NAME = "provinceName"; private String provinceName; public static final String JSON_PROPERTY_CITY_NAME = "cityName"; private String cityName; public static final String JSON_PROPERTY_AREA_NAME = "areaName"; private String areaName; public static final String JSON_PROPERTY_TOWN_NAME = "townName"; private String townName; public static final String JSON_PROPERTY_ADDRESS = "address"; private String address; public static final String JSON_PROPERTY_APP_ID = "appId"; private Integer appId; public PlatOrderPartConsignInfoVo orderTotalAmount(String orderTotalAmount) { this.orderTotalAmount = orderTotalAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderTotalAmount") @JsonInclude(Include.USE_DEFAULTS) public String getOrderTotalAmount() { return this.orderTotalAmount; } @JsonProperty("orderTotalAmount") @JsonInclude(Include.USE_DEFAULTS) public void setOrderTotalAmount(String orderTotalAmount) { this.orderTotalAmount = orderTotalAmount; } public PlatOrderPartConsignInfoVo paymentAmount(String paymentAmount) { this.paymentAmount = paymentAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("paymentAmount") @JsonInclude(Include.USE_DEFAULTS) public String getPaymentAmount() { return this.paymentAmount; } @JsonProperty("paymentAmount") @JsonInclude(Include.USE_DEFAULTS) public void setPaymentAmount(String paymentAmount) { this.paymentAmount = paymentAmount; } public PlatOrderPartConsignInfoVo freightAmount(String freightAmount) { this.freightAmount = freightAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("freightAmount") @JsonInclude(Include.USE_DEFAULTS) public String getFreightAmount() { return this.freightAmount; } @JsonProperty("freightAmount") @JsonInclude(Include.USE_DEFAULTS) public void setFreightAmount(String freightAmount) { this.freightAmount = freightAmount; } public PlatOrderPartConsignInfoVo platCouponDiscountAmount(String platCouponDiscountAmount) { this.platCouponDiscountAmount = platCouponDiscountAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("platCouponDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public String getPlatCouponDiscountAmount() { return this.platCouponDiscountAmount; } @JsonProperty("platCouponDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public void setPlatCouponDiscountAmount(String platCouponDiscountAmount) { this.platCouponDiscountAmount = platCouponDiscountAmount; } public PlatOrderPartConsignInfoVo bizCouponDiscountAmount(String bizCouponDiscountAmount) { this.bizCouponDiscountAmount = bizCouponDiscountAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("bizCouponDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public String getBizCouponDiscountAmount() { return this.bizCouponDiscountAmount; } @JsonProperty("bizCouponDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public void setBizCouponDiscountAmount(String bizCouponDiscountAmount) { this.bizCouponDiscountAmount = bizCouponDiscountAmount; } public PlatOrderPartConsignInfoVo platPromotionDiscountAmount(String platPromotionDiscountAmount) { this.platPromotionDiscountAmount = platPromotionDiscountAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("platPromotionDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public String getPlatPromotionDiscountAmount() { return this.platPromotionDiscountAmount; } @JsonProperty("platPromotionDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public void setPlatPromotionDiscountAmount(String platPromotionDiscountAmount) { this.platPromotionDiscountAmount = platPromotionDiscountAmount; } public PlatOrderPartConsignInfoVo bizPromotionDiscountAmount(String bizPromotionDiscountAmount) { this.bizPromotionDiscountAmount = bizPromotionDiscountAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("bizPromotionDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public String getBizPromotionDiscountAmount() { return this.bizPromotionDiscountAmount; } @JsonProperty("bizPromotionDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public void setBizPromotionDiscountAmount(String bizPromotionDiscountAmount) { this.bizPromotionDiscountAmount = bizPromotionDiscountAmount; } public PlatOrderPartConsignInfoVo orderDetailNew(List<PlatOrderDetailPartConsignVo> orderDetailNew) { this.orderDetailNew = orderDetailNew; return this; } public PlatOrderPartConsignInfoVo addOrderDetailNewItem(PlatOrderDetailPartConsignVo orderDetailNewItem) { if (this.orderDetailNew == null) { this.orderDetailNew = new ArrayList(); } this.orderDetailNew.add(orderDetailNewItem); return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderDetailNew") @JsonInclude(Include.USE_DEFAULTS) public List<PlatOrderDetailPartConsignVo> getOrderDetailNew() { return this.orderDetailNew; } @JsonProperty("orderDetailNew") @JsonInclude(Include.USE_DEFAULTS) public void setOrderDetailNew(List<PlatOrderDetailPartConsignVo> orderDetailNew) { this.orderDetailNew = orderDetailNew; } public PlatOrderPartConsignInfoVo partConsign(Integer partConsign) { this.partConsign = partConsign; return this; } @Nullable @ApiModelProperty("") @JsonProperty("partConsign") @JsonInclude(Include.USE_DEFAULTS) public Integer getPartConsign() { return this.partConsign; } @JsonProperty("partConsign") @JsonInclude(Include.USE_DEFAULTS) public void setPartConsign(Integer partConsign) { this.partConsign = partConsign; } public PlatOrderPartConsignInfoVo productTotalAmount(String productTotalAmount) { this.productTotalAmount = productTotalAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("productTotalAmount") @JsonInclude(Include.USE_DEFAULTS) public String getProductTotalAmount() { return this.productTotalAmount; } @JsonProperty("productTotalAmount") @JsonInclude(Include.USE_DEFAULTS) public void setProductTotalAmount(String productTotalAmount) { this.productTotalAmount = productTotalAmount; } public PlatOrderPartConsignInfoVo platRedPacketDiscountAmount(String platRedPacketDiscountAmount) { this.platRedPacketDiscountAmount = platRedPacketDiscountAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("platRedPacketDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public String getPlatRedPacketDiscountAmount() { return this.platRedPacketDiscountAmount; } @JsonProperty("platRedPacketDiscountAmount") @JsonInclude(Include.USE_DEFAULTS) public void setPlatRedPacketDiscountAmount(String platRedPacketDiscountAmount) { this.platRedPacketDiscountAmount = platRedPacketDiscountAmount; } public PlatOrderPartConsignInfoVo duePayTime(String duePayTime) { this.duePayTime = duePayTime; return this; } @Nullable @ApiModelProperty("") @JsonProperty("duePayTime") @JsonInclude(Include.USE_DEFAULTS) public String getDuePayTime() { return this.duePayTime; } @JsonProperty("duePayTime") @JsonInclude(Include.USE_DEFAULTS) public void setDuePayTime(String duePayTime) { this.duePayTime = duePayTime; } public PlatOrderPartConsignInfoVo adjustPriceAmount(String adjustPriceAmount) { this.adjustPriceAmount = adjustPriceAmount; return this; } @Nullable @ApiModelProperty("") @JsonProperty("adjustPriceAmount") @JsonInclude(Include.USE_DEFAULTS) public String getAdjustPriceAmount() { return this.adjustPriceAmount; } @JsonProperty("adjustPriceAmount") @JsonInclude(Include.USE_DEFAULTS) public void setAdjustPriceAmount(String adjustPriceAmount) { this.adjustPriceAmount = adjustPriceAmount; } public PlatOrderPartConsignInfoVo orderPayTime(String orderPayTime) { this.orderPayTime = orderPayTime; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderPayTime") @JsonInclude(Include.USE_DEFAULTS) public String getOrderPayTime() { return this.orderPayTime; } @JsonProperty("orderPayTime") @JsonInclude(Include.USE_DEFAULTS) public void setOrderPayTime(String orderPayTime) { this.orderPayTime = orderPayTime; } public PlatOrderPartConsignInfoVo orderId(String orderId) { this.orderId = orderId; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderId") @JsonInclude(Include.USE_DEFAULTS) public String getOrderId() { return this.orderId; } @JsonProperty("orderId") @JsonInclude(Include.USE_DEFAULTS) public void setOrderId(String orderId) { this.orderId = orderId; } public PlatOrderPartConsignInfoVo refundId(String refundId) { this.refundId = refundId; return this; } @Nullable @ApiModelProperty("") @JsonProperty("refundId") @JsonInclude(Include.USE_DEFAULTS) public String getRefundId() { return this.refundId; } @JsonProperty("refundId") @JsonInclude(Include.USE_DEFAULTS) public void setRefundId(String refundId) { this.refundId = refundId; } public PlatOrderPartConsignInfoVo orderType(Integer orderType) { this.orderType = orderType; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderType") @JsonInclude(Include.USE_DEFAULTS) public Integer getOrderType() { return this.orderType; } @JsonProperty("orderType") @JsonInclude(Include.USE_DEFAULTS) public void setOrderType(Integer orderType) { this.orderType = orderType; } public PlatOrderPartConsignInfoVo createTime(String createTime) { this.createTime = createTime; return this; } @Nullable @ApiModelProperty("") @JsonProperty("createTime") @JsonInclude(Include.USE_DEFAULTS) public String getCreateTime() { return this.createTime; } @JsonProperty("createTime") @JsonInclude(Include.USE_DEFAULTS) public void setCreateTime(String createTime) { this.createTime = createTime; } public PlatOrderPartConsignInfoVo orderStatus(Integer orderStatus) { this.orderStatus = orderStatus; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderStatus") @JsonInclude(Include.USE_DEFAULTS) public Integer getOrderStatus() { return this.orderStatus; } @JsonProperty("orderStatus") @JsonInclude(Include.USE_DEFAULTS) public void setOrderStatus(Integer orderStatus) { this.orderStatus = orderStatus; } public PlatOrderPartConsignInfoVo orderStatusText(String orderStatusText) { this.orderStatusText = orderStatusText; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderStatusText") @JsonInclude(Include.USE_DEFAULTS) public String getOrderStatusText() { return this.orderStatusText; } @JsonProperty("orderStatusText") @JsonInclude(Include.USE_DEFAULTS) public void setOrderStatusText(String orderStatusText) { this.orderStatusText = orderStatusText; } public PlatOrderPartConsignInfoVo receiver(String receiver) { this.receiver = receiver; return this; } @Nullable @ApiModelProperty("") @JsonProperty("receiver") @JsonInclude(Include.USE_DEFAULTS) public String getReceiver() { return this.receiver; } @JsonProperty("receiver") @JsonInclude(Include.USE_DEFAULTS) public void setReceiver(String receiver) { this.receiver = receiver; } public PlatOrderPartConsignInfoVo receiverMobile(String receiverMobile) { this.receiverMobile = receiverMobile; return this; } @Nullable @ApiModelProperty("") @JsonProperty("receiverMobile") @JsonInclude(Include.USE_DEFAULTS) public String getReceiverMobile() { return this.receiverMobile; } @JsonProperty("receiverMobile") @JsonInclude(Include.USE_DEFAULTS) public void setReceiverMobile(String receiverMobile) { this.receiverMobile = receiverMobile; } public PlatOrderPartConsignInfoVo receiverAddress(String receiverAddress) { this.receiverAddress = receiverAddress; return this; } @Nullable @ApiModelProperty("") @JsonProperty("receiverAddress") @JsonInclude(Include.USE_DEFAULTS) public String getReceiverAddress() { return this.receiverAddress; } @JsonProperty("receiverAddress") @JsonInclude(Include.USE_DEFAULTS) public void setReceiverAddress(String receiverAddress) { this.receiverAddress = receiverAddress; } public PlatOrderPartConsignInfoVo message(String message) { this.message = message; return this; } @Nullable @ApiModelProperty("") @JsonProperty("message") @JsonInclude(Include.USE_DEFAULTS) public String getMessage() { return this.message; } @JsonProperty("message") @JsonInclude(Include.USE_DEFAULTS) public void setMessage(String message) { this.message = message; } public PlatOrderPartConsignInfoVo remark(String remark) { this.remark = remark; return this; } @Nullable @ApiModelProperty("") @JsonProperty("remark") @JsonInclude(Include.USE_DEFAULTS) public String getRemark() { return this.remark; } @JsonProperty("remark") @JsonInclude(Include.USE_DEFAULTS) public void setRemark(String remark) { this.remark = remark; } public PlatOrderPartConsignInfoVo expressInfo(String expressInfo) { this.expressInfo = expressInfo; return this; } @Nullable @ApiModelProperty("") @JsonProperty("expressInfo") @JsonInclude(Include.USE_DEFAULTS) public String getExpressInfo() { return this.expressInfo; } @JsonProperty("expressInfo") @JsonInclude(Include.USE_DEFAULTS) public void setExpressInfo(String expressInfo) { this.expressInfo = expressInfo; } public PlatOrderPartConsignInfoVo trackingNumber(String trackingNumber) { this.trackingNumber = trackingNumber; return this; } @Nullable @ApiModelProperty("") @JsonProperty("trackingNumber") @JsonInclude(Include.USE_DEFAULTS) public String getTrackingNumber() { return this.trackingNumber; } @JsonProperty("trackingNumber") @JsonInclude(Include.USE_DEFAULTS) public void setTrackingNumber(String trackingNumber) { this.trackingNumber = trackingNumber; } public PlatOrderPartConsignInfoVo expressName(String expressName) { this.expressName = expressName; return this; } @Nullable @ApiModelProperty("") @JsonProperty("expressName") @JsonInclude(Include.USE_DEFAULTS) public String getExpressName() { return this.expressName; } @JsonProperty("expressName") @JsonInclude(Include.USE_DEFAULTS) public void setExpressName(String expressName) { this.expressName = expressName; } public PlatOrderPartConsignInfoVo consignTime(String consignTime) { this.consignTime = consignTime; return this; } @Nullable @ApiModelProperty("") @JsonProperty("consignTime") @JsonInclude(Include.USE_DEFAULTS) public String getConsignTime() { return this.consignTime; } @JsonProperty("consignTime") @JsonInclude(Include.USE_DEFAULTS) public void setConsignTime(String consignTime) { this.consignTime = consignTime; } public PlatOrderPartConsignInfoVo ucId(String ucId) { this.ucId = ucId; return this; } @Nullable @ApiModelProperty("") @JsonProperty("ucId") @JsonInclude(Include.USE_DEFAULTS) public String getUcId() { return this.ucId; } @JsonProperty("ucId") @JsonInclude(Include.USE_DEFAULTS) public void setUcId(String ucId) { this.ucId = ucId; } public PlatOrderPartConsignInfoVo expressStatus(Integer expressStatus) { this.expressStatus = expressStatus; return this; } @Nullable @ApiModelProperty("") @JsonProperty("expressStatus") @JsonInclude(Include.USE_DEFAULTS) public Integer getExpressStatus() { return this.expressStatus; } @JsonProperty("expressStatus") @JsonInclude(Include.USE_DEFAULTS) public void setExpressStatus(Integer expressStatus) { this.expressStatus = expressStatus; } public PlatOrderPartConsignInfoVo expressStatusText(String expressStatusText) { this.expressStatusText = expressStatusText; return this; } @Nullable @ApiModelProperty("") @JsonProperty("expressStatusText") @JsonInclude(Include.USE_DEFAULTS) public String getExpressStatusText() { return this.expressStatusText; } @JsonProperty("expressStatusText") @JsonInclude(Include.USE_DEFAULTS) public void setExpressStatusText(String expressStatusText) { this.expressStatusText = expressStatusText; } public PlatOrderPartConsignInfoVo orderTypeText(String orderTypeText) { this.orderTypeText = orderTypeText; return this; } @Nullable @ApiModelProperty("") @JsonProperty("orderTypeText") @JsonInclude(Include.USE_DEFAULTS) public String getOrderTypeText() { return this.orderTypeText; } @JsonProperty("orderTypeText") @JsonInclude(Include.USE_DEFAULTS) public void setOrderTypeText(String orderTypeText) { this.orderTypeText = orderTypeText; } public PlatOrderPartConsignInfoVo clickTypeText(String clickTypeText) { this.clickTypeText = clickTypeText; return this; } @Nullable @ApiModelProperty("") @JsonProperty("clickTypeText") @JsonInclude(Include.USE_DEFAULTS) public String getClickTypeText() { return this.clickTypeText; } @JsonProperty("clickTypeText") @JsonInclude(Include.USE_DEFAULTS) public void setClickTypeText(String clickTypeText) { this.clickTypeText = clickTypeText; } public PlatOrderPartConsignInfoVo provinceName(String provinceName) { this.provinceName = provinceName; return this; } @Nullable @ApiModelProperty("") @JsonProperty("provinceName") @JsonInclude(Include.USE_DEFAULTS) public String getProvinceName() { return this.provinceName; } @JsonProperty("provinceName") @JsonInclude(Include.USE_DEFAULTS) public void setProvinceName(String provinceName) { this.provinceName = provinceName; } public PlatOrderPartConsignInfoVo cityName(String cityName) { this.cityName = cityName; return this; } @Nullable @ApiModelProperty("") @JsonProperty("cityName") @JsonInclude(Include.USE_DEFAULTS) public String getCityName() { return this.cityName; } @JsonProperty("cityName") @JsonInclude(Include.USE_DEFAULTS) public void setCityName(String cityName) { this.cityName = cityName; } public PlatOrderPartConsignInfoVo areaName(String areaName) { this.areaName = areaName; return this; } @Nullable @ApiModelProperty("") @JsonProperty("areaName") @JsonInclude(Include.USE_DEFAULTS) public String getAreaName() { return this.areaName; } @JsonProperty("areaName") @JsonInclude(Include.USE_DEFAULTS) public void setAreaName(String areaName) { this.areaName = areaName; } public PlatOrderPartConsignInfoVo townName(String townName) { this.townName = townName; return this; } @Nullable @ApiModelProperty("") @JsonProperty("townName") @JsonInclude(Include.USE_DEFAULTS) public String getTownName() { return this.townName; } @JsonProperty("townName") @JsonInclude(Include.USE_DEFAULTS) public void setTownName(String townName) { this.townName = townName; } public PlatOrderPartConsignInfoVo address(String address) { this.address = address; return this; } @Nullable @ApiModelProperty("") @JsonProperty("address") @JsonInclude(Include.USE_DEFAULTS) public String getAddress() { return this.address; } @JsonProperty("address") @JsonInclude(Include.USE_DEFAULTS) public void setAddress(String address) { this.address = address; } public PlatOrderPartConsignInfoVo appId(Integer appId) { this.appId = appId; return this; } @Nullable @ApiModelProperty("") @JsonProperty("appId") @JsonInclude(Include.USE_DEFAULTS) public Integer getAppId() { return this.appId; } @JsonProperty("appId") @JsonInclude(Include.USE_DEFAULTS) public void setAppId(Integer appId) { this.appId = appId; } public boolean equals(Object o) { if (this == o) { return true; } else if (o != null && this.getClass() == o.getClass()) { PlatOrderPartConsignInfoVo platOrderPartConsignInfoVo = (PlatOrderPartConsignInfoVo)o; return Objects.equals(this.orderTotalAmount, platOrderPartConsignInfoVo.orderTotalAmount) && Objects.equals(this.paymentAmount, platOrderPartConsignInfoVo.paymentAmount) && Objects.equals(this.freightAmount, platOrderPartConsignInfoVo.freightAmount) && Objects.equals(this.platCouponDiscountAmount, platOrderPartConsignInfoVo.platCouponDiscountAmount) && Objects.equals(this.bizCouponDiscountAmount, platOrderPartConsignInfoVo.bizCouponDiscountAmount) && Objects.equals(this.platPromotionDiscountAmount, platOrderPartConsignInfoVo.platPromotionDiscountAmount) && Objects.equals(this.bizPromotionDiscountAmount, platOrderPartConsignInfoVo.bizPromotionDiscountAmount) && Objects.equals(this.orderDetailNew, platOrderPartConsignInfoVo.orderDetailNew) && Objects.equals(this.partConsign, platOrderPartConsignInfoVo.partConsign) && Objects.equals(this.productTotalAmount, platOrderPartConsignInfoVo.productTotalAmount) && Objects.equals(this.platRedPacketDiscountAmount, platOrderPartConsignInfoVo.platRedPacketDiscountAmount) && Objects.equals(this.duePayTime, platOrderPartConsignInfoVo.duePayTime) && Objects.equals(this.adjustPriceAmount, platOrderPartConsignInfoVo.adjustPriceAmount) && Objects.equals(this.orderPayTime, platOrderPartConsignInfoVo.orderPayTime) && Objects.equals(this.orderId, platOrderPartConsignInfoVo.orderId) && Objects.equals(this.refundId, platOrderPartConsignInfoVo.refundId) && Objects.equals(this.orderType, platOrderPartConsignInfoVo.orderType) && Objects.equals(this.createTime, platOrderPartConsignInfoVo.createTime) && Objects.equals(this.orderStatus, platOrderPartConsignInfoVo.orderStatus) && Objects.equals(this.orderStatusText, platOrderPartConsignInfoVo.orderStatusText) && Objects.equals(this.receiver, platOrderPartConsignInfoVo.receiver) && Objects.equals(this.receiverMobile, platOrderPartConsignInfoVo.receiverMobile) && Objects.equals(this.receiverAddress, platOrderPartConsignInfoVo.receiverAddress) && Objects.equals(this.message, platOrderPartConsignInfoVo.message) && Objects.equals(this.remark, platOrderPartConsignInfoVo.remark) && Objects.equals(this.expressInfo, platOrderPartConsignInfoVo.expressInfo) && Objects.equals(this.trackingNumber, platOrderPartConsignInfoVo.trackingNumber) && Objects.equals(this.expressName, platOrderPartConsignInfoVo.expressName) && Objects.equals(this.consignTime, platOrderPartConsignInfoVo.consignTime) && Objects.equals(this.ucId, platOrderPartConsignInfoVo.ucId) && Objects.equals(this.expressStatus, platOrderPartConsignInfoVo.expressStatus) && Objects.equals(this.expressStatusText, platOrderPartConsignInfoVo.expressStatusText) && Objects.equals(this.orderTypeText, platOrderPartConsignInfoVo.orderTypeText) && Objects.equals(this.clickTypeText, platOrderPartConsignInfoVo.clickTypeText) && Objects.equals(this.provinceName, platOrderPartConsignInfoVo.provinceName) && Objects.equals(this.cityName, platOrderPartConsignInfoVo.cityName) && Objects.equals(this.areaName, platOrderPartConsignInfoVo.areaName) && Objects.equals(this.townName, platOrderPartConsignInfoVo.townName) && Objects.equals(this.address, platOrderPartConsignInfoVo.address) && Objects.equals(this.appId, platOrderPartConsignInfoVo.appId); } else { return false; } } public int hashCode() { return Objects.hash(new Object[]{this.orderTotalAmount, this.paymentAmount, this.freightAmount, this.platCouponDiscountAmount, this.bizCouponDiscountAmount, this.platPromotionDiscountAmount, this.bizPromotionDiscountAmount, this.orderDetailNew, this.partConsign, this.productTotalAmount, this.platRedPacketDiscountAmount, this.duePayTime, this.adjustPriceAmount, this.orderPayTime, this.orderId, this.refundId, this.orderType, this.createTime, this.orderStatus, this.orderStatusText, this.receiver, this.receiverMobile, this.receiverAddress, this.message, this.remark, this.expressInfo, this.trackingNumber, this.expressName, this.consignTime, this.ucId, this.expressStatus, this.expressStatusText, this.orderTypeText, this.clickTypeText, this.provinceName, this.cityName, this.areaName, this.townName, this.address, this.appId}); } public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PlatOrderPartConsignInfoVo {\n"); sb.append(" orderTotalAmount: ").append(this.toIndentedString(this.orderTotalAmount)).append("\n"); sb.append(" paymentAmount: ").append(this.toIndentedString(this.paymentAmount)).append("\n"); sb.append(" freightAmount: ").append(this.toIndentedString(this.freightAmount)).append("\n"); sb.append(" platCouponDiscountAmount: ").append(this.toIndentedString(this.platCouponDiscountAmount)).append("\n"); sb.append(" bizCouponDiscountAmount: ").append(this.toIndentedString(this.bizCouponDiscountAmount)).append("\n"); sb.append(" platPromotionDiscountAmount: ").append(this.toIndentedString(this.platPromotionDiscountAmount)).append("\n"); sb.append(" bizPromotionDiscountAmount: ").append(this.toIndentedString(this.bizPromotionDiscountAmount)).append("\n"); sb.append(" orderDetailNew: ").append(this.toIndentedString(this.orderDetailNew)).append("\n"); sb.append(" partConsign: ").append(this.toIndentedString(this.partConsign)).append("\n"); sb.append(" productTotalAmount: ").append(this.toIndentedString(this.productTotalAmount)).append("\n"); sb.append(" platRedPacketDiscountAmount: ").append(this.toIndentedString(this.platRedPacketDiscountAmount)).append("\n"); sb.append(" duePayTime: ").append(this.toIndentedString(this.duePayTime)).append("\n"); sb.append(" adjustPriceAmount: ").append(this.toIndentedString(this.adjustPriceAmount)).append("\n"); sb.append(" orderPayTime: ").append(this.toIndentedString(this.orderPayTime)).append("\n"); sb.append(" orderId: ").append(this.toIndentedString(this.orderId)).append("\n"); sb.append(" refundId: ").append(this.toIndentedString(this.refundId)).append("\n"); sb.append(" orderType: ").append(this.toIndentedString(this.orderType)).append("\n"); sb.append(" createTime: ").append(this.toIndentedString(this.createTime)).append("\n"); sb.append(" orderStatus: ").append(this.toIndentedString(this.orderStatus)).append("\n"); sb.append(" orderStatusText: ").append(this.toIndentedString(this.orderStatusText)).append("\n"); sb.append(" receiver: ").append(this.toIndentedString(this.receiver)).append("\n"); sb.append(" receiverMobile: ").append(this.toIndentedString(this.receiverMobile)).append("\n"); sb.append(" receiverAddress: ").append(this.toIndentedString(this.receiverAddress)).append("\n"); sb.append(" message: ").append(this.toIndentedString(this.message)).append("\n"); sb.append(" remark: ").append(this.toIndentedString(this.remark)).append("\n"); sb.append(" expressInfo: ").append(this.toIndentedString(this.expressInfo)).append("\n"); sb.append(" trackingNumber: ").append(this.toIndentedString(this.trackingNumber)).append("\n"); sb.append(" expressName: ").append(this.toIndentedString(this.expressName)).append("\n"); sb.append(" consignTime: ").append(this.toIndentedString(this.consignTime)).append("\n"); sb.append(" ucId: ").append(this.toIndentedString(this.ucId)).append("\n"); sb.append(" expressStatus: ").append(this.toIndentedString(this.expressStatus)).append("\n"); sb.append(" expressStatusText: ").append(this.toIndentedString(this.expressStatusText)).append("\n"); sb.append(" orderTypeText: ").append(this.toIndentedString(this.orderTypeText)).append("\n"); sb.append(" clickTypeText: ").append(this.toIndentedString(this.clickTypeText)).append("\n"); sb.append(" provinceName: ").append(this.toIndentedString(this.provinceName)).append("\n"); sb.append(" cityName: ").append(this.toIndentedString(this.cityName)).append("\n"); sb.append(" areaName: ").append(this.toIndentedString(this.areaName)).append("\n"); sb.append(" townName: ").append(this.toIndentedString(this.townName)).append("\n"); sb.append(" address: ").append(this.toIndentedString(this.address)).append("\n"); sb.append(" appId: ").append(this.toIndentedString(this.appId)).append("\n"); sb.append("}"); return sb.toString(); } private String toIndentedString(Object o) { return o == null ? "null" : o.toString().replace("\n", "\n "); } } 解释一下
07-15
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值