puzhibing
2024-03-05 794a2ec5fa219a0a87be0c72bd59602cb9f6c6dc
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
package com.dsh.communityWorldCup.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/19 11:03
 */
@Data
@TableName("t_world_cup_payment_participant")
public class WorldCupPaymentParticipant {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.NONE)
    private Long id;
    /**
     * 世界杯id
     */
    @TableField("worldCupId")
    private Integer worldCupId;
    /**
     * 用户id
     */
    @TableField("appUserId")
    private Integer appUserId;
    /**
     * 支付记录id
     */
    @TableField("worldCupPaymentId")
    private Long worldCupPaymentId;
    /**
     * 参赛人员类型(1=学员,2=参赛人)
     */
    @TableField("participantType")
    private Integer participantType;
    /**
     * 参赛人员id
     */
    @TableField("participantId")
    private Integer participantId;
    /**
     * 是否已参赛(0=否,1=是)
     */
    @TableField("alreadyEntered")
    private Integer alreadyEntered;
    /**
     * 添加时间
     */
    @TableField("createTime")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
    /**
     * 课时支付存储的数据
     */
    @TableField("content")
    private String content;
}