package com.stylefeng.guns.modular.system.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 lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 用户购买打车卡记录
|
* @author pzb
|
* @Date 2022/1/25 15:48
|
*/
|
@Data
|
@TableName("t_taxi_card_payment")
|
public class TaxiCardPayment {
|
//主键
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
//用户id
|
@TableField("userId")
|
private Integer userId;
|
//打车卡id
|
@TableField("taxiCardId")
|
private Integer taxiCardId;
|
//支付方式(1=微信,2=支付宝,3=其他)'
|
@TableField("payType")
|
private Integer payType;
|
//支付状态(1=待支付,2=已支付)
|
@TableField("payStatus")
|
private Integer payStatus;
|
//支付时间
|
@TableField("payTime")
|
private Date payTime;
|
//支付金额
|
@TableField("payMoney")
|
private Double payMoney;
|
//第三方订单号
|
@TableField("orderNo")
|
private String orderNo;
|
//添加时间
|
@TableField("createTime")
|
private Date createTime;
|
//打车卡类型1=打折次数卡,2=优惠卡,3=次数卡,4=打折天数卡,5=物流打折卡,6=物流优惠包)
|
@TableField("type")
|
private Integer type;
|
//开通城市id
|
@TableField("companyCityId")
|
private String companyCityId;
|
//规则JSON字符串
|
@TableField("content")
|
private String content;
|
//所属企业
|
@TableField("companyId")
|
private Integer companyId;
|
}
|