初始项目信息导入
This commit is contained in:
416
mall-mbg/src/main/java/com/macro/mall/model/OmsOrder.java
Normal file
416
mall-mbg/src/main/java/com/macro/mall/model/OmsOrder.java
Normal file
@@ -0,0 +1,416 @@
|
||||
package com.macro.mall.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class OmsOrder implements Serializable {
|
||||
private Long id;
|
||||
|
||||
private Long memberId;
|
||||
|
||||
private Long couponId;
|
||||
|
||||
private String orderSn;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private String memberUsername;
|
||||
|
||||
private BigDecimal totalAmount;
|
||||
|
||||
private BigDecimal freightAmount;
|
||||
|
||||
private BigDecimal promotionAmount;
|
||||
|
||||
private BigDecimal integrationAmount;
|
||||
|
||||
private BigDecimal couponAmount;
|
||||
|
||||
private BigDecimal discountAmount;
|
||||
|
||||
private Integer payType;
|
||||
|
||||
private Integer sourceType;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer orderType;
|
||||
|
||||
private String deliveryCompany;
|
||||
|
||||
private String deliverySn;
|
||||
|
||||
private Integer autoConfirmDay;
|
||||
|
||||
private Integer integration;
|
||||
|
||||
private Integer growth;
|
||||
|
||||
private String promotionInfo;
|
||||
|
||||
private Integer billType;
|
||||
|
||||
private String billHeader;
|
||||
|
||||
private String billContent;
|
||||
|
||||
private String billReceiverPhone;
|
||||
|
||||
private String billReceiverEmail;
|
||||
|
||||
private String receiverName;
|
||||
|
||||
private String receiverPhone;
|
||||
|
||||
private String receiverPostCode;
|
||||
|
||||
private String receiverProvince;
|
||||
|
||||
private String receiverCity;
|
||||
|
||||
private String receiverRegion;
|
||||
|
||||
private String receiverDetailAddress;
|
||||
|
||||
private String note;
|
||||
|
||||
private Integer confirmStatus;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getMemberId() {
|
||||
return memberId;
|
||||
}
|
||||
|
||||
public void setMemberId(Long memberId) {
|
||||
this.memberId = memberId;
|
||||
}
|
||||
|
||||
public Long getCouponId() {
|
||||
return couponId;
|
||||
}
|
||||
|
||||
public void setCouponId(Long couponId) {
|
||||
this.couponId = couponId;
|
||||
}
|
||||
|
||||
public String getOrderSn() {
|
||||
return orderSn;
|
||||
}
|
||||
|
||||
public void setOrderSn(String orderSn) {
|
||||
this.orderSn = orderSn;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getMemberUsername() {
|
||||
return memberUsername;
|
||||
}
|
||||
|
||||
public void setMemberUsername(String memberUsername) {
|
||||
this.memberUsername = memberUsername;
|
||||
}
|
||||
|
||||
public BigDecimal getTotalAmount() {
|
||||
return totalAmount;
|
||||
}
|
||||
|
||||
public void setTotalAmount(BigDecimal totalAmount) {
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getFreightAmount() {
|
||||
return freightAmount;
|
||||
}
|
||||
|
||||
public void setFreightAmount(BigDecimal freightAmount) {
|
||||
this.freightAmount = freightAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getPromotionAmount() {
|
||||
return promotionAmount;
|
||||
}
|
||||
|
||||
public void setPromotionAmount(BigDecimal promotionAmount) {
|
||||
this.promotionAmount = promotionAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getIntegrationAmount() {
|
||||
return integrationAmount;
|
||||
}
|
||||
|
||||
public void setIntegrationAmount(BigDecimal integrationAmount) {
|
||||
this.integrationAmount = integrationAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getCouponAmount() {
|
||||
return couponAmount;
|
||||
}
|
||||
|
||||
public void setCouponAmount(BigDecimal couponAmount) {
|
||||
this.couponAmount = couponAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getDiscountAmount() {
|
||||
return discountAmount;
|
||||
}
|
||||
|
||||
public void setDiscountAmount(BigDecimal discountAmount) {
|
||||
this.discountAmount = discountAmount;
|
||||
}
|
||||
|
||||
public Integer getPayType() {
|
||||
return payType;
|
||||
}
|
||||
|
||||
public void setPayType(Integer payType) {
|
||||
this.payType = payType;
|
||||
}
|
||||
|
||||
public Integer getSourceType() {
|
||||
return sourceType;
|
||||
}
|
||||
|
||||
public void setSourceType(Integer sourceType) {
|
||||
this.sourceType = sourceType;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getOrderType() {
|
||||
return orderType;
|
||||
}
|
||||
|
||||
public void setOrderType(Integer orderType) {
|
||||
this.orderType = orderType;
|
||||
}
|
||||
|
||||
public String getDeliveryCompany() {
|
||||
return deliveryCompany;
|
||||
}
|
||||
|
||||
public void setDeliveryCompany(String deliveryCompany) {
|
||||
this.deliveryCompany = deliveryCompany;
|
||||
}
|
||||
|
||||
public String getDeliverySn() {
|
||||
return deliverySn;
|
||||
}
|
||||
|
||||
public void setDeliverySn(String deliverySn) {
|
||||
this.deliverySn = deliverySn;
|
||||
}
|
||||
|
||||
public Integer getAutoConfirmDay() {
|
||||
return autoConfirmDay;
|
||||
}
|
||||
|
||||
public void setAutoConfirmDay(Integer autoConfirmDay) {
|
||||
this.autoConfirmDay = autoConfirmDay;
|
||||
}
|
||||
|
||||
public Integer getIntegration() {
|
||||
return integration;
|
||||
}
|
||||
|
||||
public void setIntegration(Integer integration) {
|
||||
this.integration = integration;
|
||||
}
|
||||
|
||||
public Integer getGrowth() {
|
||||
return growth;
|
||||
}
|
||||
|
||||
public void setGrowth(Integer growth) {
|
||||
this.growth = growth;
|
||||
}
|
||||
|
||||
public String getPromotionInfo() {
|
||||
return promotionInfo;
|
||||
}
|
||||
|
||||
public void setPromotionInfo(String promotionInfo) {
|
||||
this.promotionInfo = promotionInfo;
|
||||
}
|
||||
|
||||
public Integer getBillType() {
|
||||
return billType;
|
||||
}
|
||||
|
||||
public void setBillType(Integer billType) {
|
||||
this.billType = billType;
|
||||
}
|
||||
|
||||
public String getBillHeader() {
|
||||
return billHeader;
|
||||
}
|
||||
|
||||
public void setBillHeader(String billHeader) {
|
||||
this.billHeader = billHeader;
|
||||
}
|
||||
|
||||
public String getBillContent() {
|
||||
return billContent;
|
||||
}
|
||||
|
||||
public void setBillContent(String billContent) {
|
||||
this.billContent = billContent;
|
||||
}
|
||||
|
||||
public String getBillReceiverPhone() {
|
||||
return billReceiverPhone;
|
||||
}
|
||||
|
||||
public void setBillReceiverPhone(String billReceiverPhone) {
|
||||
this.billReceiverPhone = billReceiverPhone;
|
||||
}
|
||||
|
||||
public String getBillReceiverEmail() {
|
||||
return billReceiverEmail;
|
||||
}
|
||||
|
||||
public void setBillReceiverEmail(String billReceiverEmail) {
|
||||
this.billReceiverEmail = billReceiverEmail;
|
||||
}
|
||||
|
||||
public String getReceiverName() {
|
||||
return receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
|
||||
public String getReceiverPhone() {
|
||||
return receiverPhone;
|
||||
}
|
||||
|
||||
public void setReceiverPhone(String receiverPhone) {
|
||||
this.receiverPhone = receiverPhone;
|
||||
}
|
||||
|
||||
public String getReceiverPostCode() {
|
||||
return receiverPostCode;
|
||||
}
|
||||
|
||||
public void setReceiverPostCode(String receiverPostCode) {
|
||||
this.receiverPostCode = receiverPostCode;
|
||||
}
|
||||
|
||||
public String getReceiverProvince() {
|
||||
return receiverProvince;
|
||||
}
|
||||
|
||||
public void setReceiverProvince(String receiverProvince) {
|
||||
this.receiverProvince = receiverProvince;
|
||||
}
|
||||
|
||||
public String getReceiverCity() {
|
||||
return receiverCity;
|
||||
}
|
||||
|
||||
public void setReceiverCity(String receiverCity) {
|
||||
this.receiverCity = receiverCity;
|
||||
}
|
||||
|
||||
public String getReceiverRegion() {
|
||||
return receiverRegion;
|
||||
}
|
||||
|
||||
public void setReceiverRegion(String receiverRegion) {
|
||||
this.receiverRegion = receiverRegion;
|
||||
}
|
||||
|
||||
public String getReceiverDetailAddress() {
|
||||
return receiverDetailAddress;
|
||||
}
|
||||
|
||||
public void setReceiverDetailAddress(String receiverDetailAddress) {
|
||||
this.receiverDetailAddress = receiverDetailAddress;
|
||||
}
|
||||
|
||||
public String getNote() {
|
||||
return note;
|
||||
}
|
||||
|
||||
public void setNote(String note) {
|
||||
this.note = note;
|
||||
}
|
||||
|
||||
public Integer getConfirmStatus() {
|
||||
return confirmStatus;
|
||||
}
|
||||
|
||||
public void setConfirmStatus(Integer confirmStatus) {
|
||||
this.confirmStatus = confirmStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(hashCode());
|
||||
sb.append(", id=").append(id);
|
||||
sb.append(", memberId=").append(memberId);
|
||||
sb.append(", couponId=").append(couponId);
|
||||
sb.append(", orderSn=").append(orderSn);
|
||||
sb.append(", createTime=").append(createTime);
|
||||
sb.append(", memberUsername=").append(memberUsername);
|
||||
sb.append(", totalAmount=").append(totalAmount);
|
||||
sb.append(", freightAmount=").append(freightAmount);
|
||||
sb.append(", promotionAmount=").append(promotionAmount);
|
||||
sb.append(", integrationAmount=").append(integrationAmount);
|
||||
sb.append(", couponAmount=").append(couponAmount);
|
||||
sb.append(", discountAmount=").append(discountAmount);
|
||||
sb.append(", payType=").append(payType);
|
||||
sb.append(", sourceType=").append(sourceType);
|
||||
sb.append(", status=").append(status);
|
||||
sb.append(", orderType=").append(orderType);
|
||||
sb.append(", deliveryCompany=").append(deliveryCompany);
|
||||
sb.append(", deliverySn=").append(deliverySn);
|
||||
sb.append(", autoConfirmDay=").append(autoConfirmDay);
|
||||
sb.append(", integration=").append(integration);
|
||||
sb.append(", growth=").append(growth);
|
||||
sb.append(", promotionInfo=").append(promotionInfo);
|
||||
sb.append(", billType=").append(billType);
|
||||
sb.append(", billHeader=").append(billHeader);
|
||||
sb.append(", billContent=").append(billContent);
|
||||
sb.append(", billReceiverPhone=").append(billReceiverPhone);
|
||||
sb.append(", billReceiverEmail=").append(billReceiverEmail);
|
||||
sb.append(", receiverName=").append(receiverName);
|
||||
sb.append(", receiverPhone=").append(receiverPhone);
|
||||
sb.append(", receiverPostCode=").append(receiverPostCode);
|
||||
sb.append(", receiverProvince=").append(receiverProvince);
|
||||
sb.append(", receiverCity=").append(receiverCity);
|
||||
sb.append(", receiverRegion=").append(receiverRegion);
|
||||
sb.append(", receiverDetailAddress=").append(receiverDetailAddress);
|
||||
sb.append(", note=").append(note);
|
||||
sb.append(", confirmStatus=").append(confirmStatus);
|
||||
sb.append(", serialVersionUID=").append(serialVersionUID);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user