package com.stylefeng.guns.modular.smallLogistics.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
import java.util.Date;
|
|
/**
|
* 小件物流差价
|
*/
|
@TableName("t_order_logistics_spread")
|
public class OrderLogisticsSpread {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
/**
|
* 小件物流订单id
|
*/
|
@TableField("orderLogisticsId")
|
private Integer orderLogisticsId;
|
/**
|
* 需要支付的差价金额
|
*/
|
@TableField("price")
|
private Double price;
|
/**
|
* 支付方式(1=微信,2=支付宝,3=其他)
|
*/
|
@TableField("payType")
|
private Integer payType;
|
/**
|
* 支付时间
|
*/
|
@TableField("payTime")
|
private Date payTime;
|
/**
|
* 支付金额
|
*/
|
@TableField("payMoney")
|
private Double payMoney;
|
/**
|
* 司机支付状态(现金支付司机代支付)1待支付 2已支付
|
* @return
|
*/
|
@TableField("driverPay")
|
private Integer driverPay;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getOrderLogisticsId() {
|
return orderLogisticsId;
|
}
|
|
public void setOrderLogisticsId(Integer orderLogisticsId) {
|
this.orderLogisticsId = orderLogisticsId;
|
}
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public Integer getPayType() {
|
return payType;
|
}
|
|
public void setPayType(Integer payType) {
|
this.payType = payType;
|
}
|
|
public Date getPayTime() {
|
return payTime;
|
}
|
|
public void setPayTime(Date payTime) {
|
this.payTime = payTime;
|
}
|
|
public Double getPayMoney() {
|
return payMoney;
|
}
|
|
public void setPayMoney(Double payMoney) {
|
this.payMoney = payMoney;
|
}
|
|
public Integer getDriverPay() {
|
return driverPay;
|
}
|
|
public void setDriverPay(Integer driverPay) {
|
this.driverPay = driverPay;
|
}
|
|
@Override
|
public String toString() {
|
return "OrderLogisticsSpread{" +
|
"id=" + id +
|
", orderLogisticsId=" + orderLogisticsId +
|
", price=" + price +
|
", payType=" + payType +
|
", payTime=" + payTime +
|
", payMoney=" + payMoney +
|
'}';
|
}
|
}
|