From 640ff18d2d7f4be02ddb7f8f75e899f05545eb98 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期一, 05 二月 2024 11:56:52 +0800 Subject: [PATCH] 更新bug修改 --- cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java b/cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java index a25f44a..0f07210 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java +++ b/cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java @@ -1,12 +1,15 @@ package com.dsh.other.entity; import java.math.BigDecimal; + import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.extension.activerecord.Model; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableField; + import java.io.Serializable; + import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; @@ -25,7 +28,7 @@ @TableName("t_game_config") public class TGameConfig extends Model<TGameConfig> { - private static final long serialVersionUID=1L; + private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; @@ -61,6 +64,12 @@ */ @TableField("gameId") private Integer gameId; + @TableField("otherId") + private Integer otherId; + @TableField(exist = false) + private String intro; + @TableField(exist = false) + private String video; @Override -- Gitblit v1.7.1