package com.stylefeng.guns.modular.shunfeng.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 财务管理; InnoDB free: 6144 kB
|
* </p>
|
*
|
* @author wumeng123
|
* @since 2019-06-11
|
*/
|
@TableName("app_financial")
|
public class Financial extends Model<Financial> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 添加时间
|
*/
|
private Date addTime;
|
/**
|
* 类型 1=收入 2=支出
|
*/
|
private Integer type;
|
/**
|
* 支付类型 1=余额 2=微信 3=支付宝
|
*/
|
private String payType;
|
/**
|
* 金额
|
*/
|
private Double money;
|
/**
|
* 购票类型 1=实时 2=城乡 3充值 4=司机提现 5=出租车用户红包 6=出租车用户取消服务费 7=司机改派费
|
*/
|
private Integer pwType;
|
/**
|
* 订单号
|
*/
|
private String orderNum;
|
/**
|
* 所属公司ID
|
*/
|
private Integer companyId;
|
/**
|
* 流水类型
|
*/
|
private String lsType;
|
|
public Integer userId;
|
/**
|
* 1=用户 2=司机
|
*/
|
private Integer lx;
|
/**
|
* 交易状态
|
*/
|
private String tradeStatus;
|
/**
|
* 1实时,2城乡票务 3出租车
|
*/
|
private Integer orderType;
|
|
|
public Integer getLx() {
|
return lx;
|
}
|
|
public void setLx(Integer lx) {
|
this.lx = lx;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getAddTime() {
|
return addTime;
|
}
|
|
public void setAddTime(Date addTime) {
|
this.addTime = addTime;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getPayType() {
|
return payType;
|
}
|
|
public void setPayType(String payType) {
|
this.payType = payType;
|
}
|
|
public Double getMoney() {
|
return money;
|
}
|
|
public void setMoney(Double money) {
|
this.money = money;
|
}
|
|
public Integer getPwType() {
|
return pwType;
|
}
|
|
public void setPwType(Integer pwType) {
|
this.pwType = pwType;
|
}
|
|
public String getOrderNum() {
|
return orderNum;
|
}
|
|
public void setOrderNum(String orderNum) {
|
this.orderNum = orderNum;
|
}
|
|
public Integer getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Integer companyId) {
|
this.companyId = companyId;
|
}
|
|
public String getLsType() {
|
return lsType;
|
}
|
|
public void setLsType(String lsType) {
|
this.lsType = lsType;
|
}
|
|
public String getTradeStatus() {
|
return tradeStatus;
|
}
|
|
public void setTradeStatus(String tradeStatus) {
|
this.tradeStatus = tradeStatus;
|
}
|
|
public Integer getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(Integer orderType) {
|
this.orderType = orderType;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "Financial{" +
|
"id=" + id +
|
", addTime=" + addTime +
|
", type=" + type +
|
", payType=" + payType +
|
", money=" + money +
|
", pwType=" + pwType +
|
", orderNum=" + orderNum +
|
", companyId=" + companyId +
|
", lsType=" + lsType +
|
"}";
|
}
|
}
|