package com.stylefeng.guns.modular.system.controller.resp;
|
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
public class RevenueExpenditureResp implements Serializable {
|
|
|
@ApiModelProperty(value = "主键")
|
private Integer id;
|
|
@ApiModelProperty(value = "订单号")
|
private String code;
|
|
@ApiModelProperty(value = "交易时间")
|
private Date businessTime;
|
|
@ApiModelProperty(value = "交易类型 1=支付订单 11=佣金体现 12=余额提现")
|
private Integer businessType;
|
|
@ApiModelProperty(value = "司机姓名")
|
private String driverName;
|
|
@ApiModelProperty(value = "司机电话")
|
private String driverPhone;
|
|
@ApiModelProperty(value = "支付类型 1微信支付 2余额支付 3线下收款")
|
private Integer payType;
|
|
@ApiModelProperty(value = "金额")
|
private BigDecimal amount;
|
|
@ApiModelProperty(value = "佣金抽成")
|
private BigDecimal commissionAmount;
|
|
@ApiModelProperty(value = "优惠券金额")
|
private BigDecimal discountedPrice;
|
|
@ApiModelProperty(value = "余额")
|
private BigDecimal accountBalance;
|
|
@ApiModelProperty(value = "状态 (2、108、109)完成")
|
private Integer state;
|
|
@ApiModelProperty(value = "司机id")
|
private Integer driverId;
|
|
@ApiModelProperty(value = "订单金额")
|
private BigDecimal payMoney;
|
|
@ApiModelProperty(value = "订单ID")
|
private Integer orderId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(Integer orderId) {
|
this.orderId = orderId;
|
}
|
|
public BigDecimal getPayMoney() {
|
return payMoney;
|
}
|
|
public void setPayMoney(BigDecimal payMoney) {
|
this.payMoney = payMoney;
|
}
|
|
public Integer getDriverId() {
|
return driverId;
|
}
|
|
public void setDriverId(Integer driverId) {
|
this.driverId = driverId;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public Date getBusinessTime() {
|
return businessTime;
|
}
|
|
public void setBusinessTime(Date businessTime) {
|
this.businessTime = businessTime;
|
}
|
|
public Integer getBusinessType() {
|
return businessType;
|
}
|
|
public void setBusinessType(Integer businessType) {
|
this.businessType = businessType;
|
}
|
|
public String getDriverName() {
|
return driverName;
|
}
|
|
public void setDriverName(String driverName) {
|
this.driverName = driverName;
|
}
|
|
public String getDriverPhone() {
|
return driverPhone;
|
}
|
|
public void setDriverPhone(String driverPhone) {
|
this.driverPhone = driverPhone;
|
}
|
|
public Integer getPayType() {
|
return payType;
|
}
|
|
public void setPayType(Integer payType) {
|
this.payType = payType;
|
}
|
|
public BigDecimal getAmount() {
|
return amount;
|
}
|
|
public void setAmount(BigDecimal amount) {
|
this.amount = amount;
|
}
|
|
public BigDecimal getCommissionAmount() {
|
return commissionAmount;
|
}
|
|
public void setCommissionAmount(BigDecimal commissionAmount) {
|
this.commissionAmount = commissionAmount;
|
}
|
|
public BigDecimal getDiscountedPrice() {
|
return discountedPrice;
|
}
|
|
public void setDiscountedPrice(BigDecimal discountedPrice) {
|
this.discountedPrice = discountedPrice;
|
}
|
|
public BigDecimal getAccountBalance() {
|
return accountBalance;
|
}
|
|
public void setAccountBalance(BigDecimal accountBalance) {
|
this.accountBalance = accountBalance;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
}
|