|
@@ -6,7 +6,6 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
-import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
@@ -17,7 +16,6 @@ import java.math.BigDecimal;
|
|
|
|
|
|
* 平台订单表
|
|
|
*/
|
|
|
-@Data
|
|
|
@TableName("order")
|
|
|
@ApiModel(value = "Order对象", description = "平台订单表")
|
|
|
public class Order implements Serializable {
|
|
@@ -175,6 +173,206 @@ public class Order implements Serializable {
|
|
|
@TableField(value = "pay_fail_msg_")
|
|
|
private String payFailMsg;
|
|
|
|
|
|
+ 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 Long getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getMerchId() {
|
|
|
+ return merchId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchId(Long merchId) {
|
|
|
+ this.merchId = merchId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderName() {
|
|
|
+ return orderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderName(String orderName) {
|
|
|
+ this.orderName = orderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderDesc() {
|
|
|
+ return orderDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderDesc(String orderDesc) {
|
|
|
+ this.orderDesc = orderDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getOriginalPrice() {
|
|
|
+ return originalPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOriginalPrice(BigDecimal originalPrice) {
|
|
|
+ this.originalPrice = originalPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getExpectPrice() {
|
|
|
+ return expectPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExpectPrice(BigDecimal expectPrice) {
|
|
|
+ this.expectPrice = expectPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getActualPrice() {
|
|
|
+ return actualPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActualPrice(BigDecimal actualPrice) {
|
|
|
+ this.actualPrice = actualPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCouponAmount() {
|
|
|
+ return couponAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCouponAmount(BigDecimal couponAmount) {
|
|
|
+ this.couponAmount = couponAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPlantformFee() {
|
|
|
+ return plantformFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlantformFee(BigDecimal plantformFee) {
|
|
|
+ this.plantformFee = plantformFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPlantformFeeRate() {
|
|
|
+ return plantformFeeRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlantformFeeRate(BigDecimal plantformFeeRate) {
|
|
|
+ this.plantformFeeRate = plantformFeeRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getRefundAmount() {
|
|
|
+ return refundAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRefundAmount(BigDecimal refundAmount) {
|
|
|
+ this.refundAmount = refundAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserNote() {
|
|
|
+ return userNote;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserNote(String userNote) {
|
|
|
+ this.userNote = userNote;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderType() {
|
|
|
+ return orderType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderType(String orderType) {
|
|
|
+ this.orderType = orderType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getPayTime() {
|
|
|
+ return payTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPayTime(Date payTime) {
|
|
|
+ this.payTime = payTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getRefundTime() {
|
|
|
+ return refundTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRefundTime(Date refundTime) {
|
|
|
+ this.refundTime = refundTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTransNo() {
|
|
|
+ return transNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTransNo(String transNo) {
|
|
|
+ this.transNo = transNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPayChannel() {
|
|
|
+ return payChannel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPayChannel(String payChannel) {
|
|
|
+ this.payChannel = payChannel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPayAmt() {
|
|
|
+ return payAmt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPayAmt(BigDecimal payAmt) {
|
|
|
+ this.payAmt = payAmt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getArrivalTime() {
|
|
|
+ return arrivalTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArrivalTime(Date arrivalTime) {
|
|
|
+ this.arrivalTime = arrivalTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPayFailMsg() {
|
|
|
+ return payFailMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPayFailMsg(String payFailMsg) {
|
|
|
+ this.payFailMsg = payFailMsg;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "Order{" +
|