From b0254c5a17b3915eb00fdcb33f0eea222cff78ee Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期三, 06 三月 2024 15:06:54 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai --- cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/entity/WorldCupCompetitor.java | 93 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 93 insertions(+), 0 deletions(-) diff --git a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/entity/WorldCupCompetitor.java b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/entity/WorldCupCompetitor.java new file mode 100644 index 0000000..93ecacc --- /dev/null +++ b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/entity/WorldCupCompetitor.java @@ -0,0 +1,93 @@ +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 lombok.Data; + +import java.util.Date; + +/** + * @author zhibing.pu + * @Date 2024/2/19 15:35 + */ +@Data +@TableName("t_world_cup_competitor") +public class WorldCupCompetitor { + /** + * 主键 + */ + @TableId(value = "id", type = IdType.NONE) + private Long id; + /** + * 参赛编号 + */ + @TableField("code") + private String code; + /** + * 世界杯id + */ + @TableField("worldCupId") + private Integer worldCupId; + /** + * 参赛人员类型(1=学员,2=参赛人) + */ + @TableField("participantType") + private Integer participantType; + /** + * 用户id + */ + @TableField("appUserId") + private Integer appUserId; + /** + * 参赛人id + */ + @TableField("participantId") + private Integer participantId; + /** + * 参赛方(1=蓝方,2=红方) + */ + @TableField("participant") + private Integer participant; + /** + * 比赛结果(1=胜,-1=负) + */ + @TableField("matchResult") + private Integer matchResult; + /** + * 我方分数 + */ + @TableField("ourScore") + private Integer ourScore; + /** + * 对手分数 + */ + @TableField("opponentScore") + private Integer opponentScore; + /** + * 参赛奖励 + */ + @TableField("participationIntegral") + private Integer participationIntegral; + /** + * 胜利奖励 + */ + @TableField("winIntegral") + private Integer winIntegral; + /** + * 比赛开始时间 + */ + @TableField("startTime") + private Date startTime; + /** + * 比赛结束时间 + */ + @TableField("endTime") + private Date endTime; + /** + * 提示状态(0=否,1=是) + */ + @TableField("tips") + private Integer tips; +} -- Gitblit v1.7.1