| | |
| | | package com.dsh.competition.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.baomidou.mybatisplus.extension.activerecord.Model; |
| | |
| | | /** |
| | | * 主键 |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.NONE) |
| | | private Long id; |
| | | /** |
| | | * 赛事id |
| | | */ |
| | | @TableField("competitionId") |
| | | private Integer competitionId; |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Integer userId; |
| | | @TableField("appUserId") |
| | | private Integer appUserId; |
| | | /** |
| | | * 状态(1=正常,2=取消) |
| | | * 参与者id |
| | | */ |
| | | private Integer status; |
| | | @TableField("participantId") |
| | | private Integer participantId; |
| | | /** |
| | | * 参与人员类型(1=学员,2=参赛者) |
| | | */ |
| | | @TableField("participantType") |
| | | private Integer participantType; |
| | | /** |
| | | * 支付记录id |
| | | */ |
| | | @TableField("paymentCompetitionId") |
| | | private Long paymentCompetitionId; |
| | | /** |
| | | * 参加时间 |
| | | */ |
| | | @TableField("insertTime") |
| | | private Date insertTime; |
| | | |
| | | |