浏览代码

feat : 删除两张没有用的表

bilingfeng 2 年之前
父节点
当前提交
fc4fb13cb4

+ 0 - 80
game-module/game-mybatis/src/main/java/com/zanxiang/mybatis/entity/GameServer.java

@@ -1,80 +0,0 @@
-package com.zanxiang.mybatis.entity;
-
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableLogic;
-import com.baomidou.mybatisplus.annotation.TableName;
-import lombok.*;
-
-import java.time.LocalDateTime;
-
-/**
- * @author : lingfeng
- * @time : 2022-06-06
- * @description : 游戏开服表
- */
-@Data
-@NoArgsConstructor
-@AllArgsConstructor
-@ToString
-@Builder
-@TableName("t_game_server")
-public class GameServer {
-
-    /**
-     * 开服信息ID
-     */
-    @TableId(value = "id", type = IdType.AUTO)
-    private Long id;
-
-    /**
-     * 游戏ID
-     */
-    private Long gameId;
-
-    /**
-     * 区服标识
-     */
-    private String serCode;
-
-    /**
-     * 新服名称 1服
-     */
-    private String serName;
-
-    /**
-     * 新服描述
-     */
-    private String serDesc;
-
-    /**
-     * 开服时间
-     */
-    private LocalDateTime startTime;
-
-    /**
-     * 新服状态,1为预告,2为已开服
-     */
-    private Integer status;
-
-    /**
-     * 1 删除  0 正常
-     */
-    @TableLogic
-    private Integer isDelete;
-
-    /**
-     * 删除时间
-     */
-    private LocalDateTime deleteTime;
-
-    /**
-     * 创建时间
-     */
-    private LocalDateTime createTime;
-
-    /**
-     * 更新时间
-     */
-    private LocalDateTime updateTime;
-}

+ 0 - 85
game-module/game-mybatis/src/main/java/com/zanxiang/mybatis/entity/GameVersion.java

@@ -1,85 +0,0 @@
-package com.zanxiang.mybatis.entity;
-
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableLogic;
-import com.baomidou.mybatisplus.annotation.TableName;
-import lombok.*;
-
-import java.time.LocalDateTime;
-
-/**
- * @author : lingfeng
- * @time : 2022-06-06
- * @description : 游戏版本表
- */
-@Data
-@NoArgsConstructor
-@AllArgsConstructor
-@ToString
-@Builder
-@TableName("t_game_version")
-public class GameVersion {
-
-    /**
-     * 编号,自增
-     */
-    @TableId(value = "id", type = IdType.AUTO)
-    private Long id;
-
-    /**
-     * 游戏ID
-     */
-    private Long gameId;
-
-    /**
-     * 版本
-     */
-    private String version;
-
-    /**
-     * 版本key
-     */
-    private String versionKey;
-
-    /**
-     * 版本说明
-     */
-    private String content;
-
-    /**
-     * 包下载地址
-     */
-    private String packageUrl;
-
-    /**
-     * 大小 单位byte
-     */
-    private Integer size;
-
-    /**
-     * 1 非默认  2 默认
-     */
-    private Boolean isDefault;
-
-    /**
-     * 1 删除  0 正常
-     */
-    @TableLogic
-    private Integer isDelete;
-
-    /**
-     * 删除时间
-     */
-    private LocalDateTime deleteTime;
-
-    /**
-     * 创建时间
-     */
-    private LocalDateTime createTime;
-
-    /**
-     * 更新时间
-     */
-    private LocalDateTime updateTime;
-}

+ 0 - 12
game-module/game-mybatis/src/main/java/com/zanxiang/mybatis/mapper/GameServerMapper.java

@@ -1,12 +0,0 @@
-package com.zanxiang.mybatis.mapper;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.zanxiang.mybatis.entity.GameServer;
-
-/**
- * @author : lingfeng
- * @time : 2022-06-06
- * @description : ${description}
- */
-public interface GameServerMapper extends BaseMapper<GameServer> {
-}

+ 0 - 12
game-module/game-mybatis/src/main/java/com/zanxiang/mybatis/mapper/GameVersionMapper.java

@@ -1,12 +0,0 @@
-package com.zanxiang.mybatis.mapper;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.zanxiang.mybatis.entity.GameVersion;
-
-/**
- * @author : lingfeng
- * @time : 2022-06-06
- * @description : ${description}
- */
-public interface GameVersionMapper extends BaseMapper<GameVersion> {
-}