xiaoyong931011
2021-12-22 dab3233712eaf2239c688b50042625e4cfb9068e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package cc.mrbird.febs.video.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author wzy
 * @date 2021-12-17
 **/
@Data
@TableName("video_vip_order_info")
public class VideoVipOrderInfoEntity extends BaseEntity {
 
    public static final Integer PAY_TYPE_ALIPAY = 1;
    public static final Integer PAY_TYPE_USDT = 2;
 
    public static final Integer PAY_STATUS_WAIT = 1;
    public static final Integer PAY_STATUS_PAY = 2;
    public static final Integer PAY_STATUS_CANCEL = 2;
 
    /**
     * 订单编号
     */
    private String orderNo;
 
    /**
     * 支付交易编号
     */
    private String payTraderNo;
 
    /**
     * 类型;1/支付宝 2/USDT
     */
    private Integer payType;
 
    /**
     * 用户ID
     */
    private Long memberId;
 
    /**
     * 金额
     */
    private BigDecimal amount;
 
    /**
     * 商品类型;MONTH/PERIOD/YEAR
     */
    private String goodsType;
 
    /**
     * 状态;1/代支付 2/已支付 3/已取消
     */
    private Integer status;
 
    /**
     * 支付时间
     */
    private Date payTime;
 
 
    @TableField(exist = false)
    private String account;
}