无关风月
2025-04-11 1d9f7b0cf4251f3058badb07dd7a2bc06b6bc09a
cloud-server-other/src/main/java/com/dsh/other/entity/TGameConfig.java
@@ -1,12 +1,16 @@
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 io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
@@ -25,7 +29,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;
@@ -63,7 +67,13 @@
    private Integer gameId;
    @TableField("otherId")
    private Integer otherId;
    @TableField(exist = false)
    private String intro;
    @TableField(exist = false)
    private String video;
    @TableField(exist = false)
    @ApiModelProperty("游戏类型(1=普通游戏,2=世界杯)")
    private Integer gameType;
    @Override