فهرست منبع

feat : 表映射代码提交

bilingfeng 2 سال پیش
والد
کامیت
56c1e23956
45فایلهای تغییر یافته به همراه1630 افزوده شده و 0 حذف شده
  1. 76 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Channel.java
  2. 81 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Cp.java
  3. 161 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Game.java
  4. 61 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameCategory.java
  5. 97 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GamePayWay.java
  6. 80 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameServer.java
  7. 77 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameUser.java
  8. 85 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameVersion.java
  9. 192 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Order.java
  10. 65 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/PayWay.java
  11. 105 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/User.java
  12. 70 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserExt.java
  13. 65 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserLoginLog.java
  14. 115 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserOauth.java
  15. 60 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserToken.java
  16. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/ChannelMapper.java
  17. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/CpMapper.java
  18. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameCategoryMapper.java
  19. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameMapper.java
  20. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GamePayWayMapper.java
  21. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameServerMapper.java
  22. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameUserMapper.java
  23. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameVersionMapper.java
  24. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/OrderMapper.java
  25. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/PayWayMapper.java
  26. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserExtMapper.java
  27. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserLoginLogMapper.java
  28. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserMapper.java
  29. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserOauthMapper.java
  30. 12 0
      game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserTokenMapper.java
  31. 4 0
      game-module/game-sdk/src/main/resources/mapper/ChannelMapper.xml
  32. 4 0
      game-module/game-sdk/src/main/resources/mapper/CpMapper.xml
  33. 4 0
      game-module/game-sdk/src/main/resources/mapper/GameCategoryMapper.xml
  34. 4 0
      game-module/game-sdk/src/main/resources/mapper/GameMapper.xml
  35. 4 0
      game-module/game-sdk/src/main/resources/mapper/GamePayWayMapper.xml
  36. 4 0
      game-module/game-sdk/src/main/resources/mapper/GameServerMapper.xml
  37. 4 0
      game-module/game-sdk/src/main/resources/mapper/GameUserMapper.xml
  38. 4 0
      game-module/game-sdk/src/main/resources/mapper/GameVersionMapper.xml
  39. 4 0
      game-module/game-sdk/src/main/resources/mapper/OrderMapper.xml
  40. 4 0
      game-module/game-sdk/src/main/resources/mapper/PayWayMapper.xml
  41. 4 0
      game-module/game-sdk/src/main/resources/mapper/UserExtMapper.xml
  42. 4 0
      game-module/game-sdk/src/main/resources/mapper/UserLoginLogMapper.xml
  43. 4 0
      game-module/game-sdk/src/main/resources/mapper/UserMapper.xml
  44. 4 0
      game-module/game-sdk/src/main/resources/mapper/UserOauthMapper.xml
  45. 4 0
      game-module/game-sdk/src/main/resources/mapper/UserTokenMapper.xml

+ 76 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Channel.java

@@ -0,0 +1,76 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 渠道表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_channel")
+public class Channel {
+
+    /**
+     * id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 平台名称
+     */
+    private String channelName;
+
+    /**
+     * 公司名称
+     */
+    private String companyName;
+
+    /**
+     * 联系人
+     */
+    private String linkMan;
+
+    /**
+     * 手机号
+     */
+    private String mobile;
+
+    /**
+     * 职位
+     */
+    private String position;
+
+    /**
+     * 1 伪删除  2 正常
+     */
+    private Boolean isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 81 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Cp.java

@@ -0,0 +1,81 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : CP表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_cp")
+public class Cp {
+
+    /**
+     * id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 公司名称
+     */
+    private String companyName;
+
+    /**
+     * 联系人
+     */
+    private String linkMan;
+
+    /**
+     * 手机号
+     */
+    private String mobile;
+
+    /**
+     * 职位
+     */
+    private String position;
+
+    /**
+     * 1 cp 2 媒体
+     */
+    private Byte type;
+
+    /**
+     * 1 伪删除  2 正常
+     */
+    private Boolean isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 渠道
+     */
+    private Long channel;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 161 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Game.java

@@ -0,0 +1,161 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 游戏列表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_game")
+public class Game {
+
+    /**
+     * 游戏ID
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * CP ID
+     */
+    private Long cpId;
+
+    /**
+     * 游戏名称
+     */
+    private String name;
+
+    /**
+     * appkey
+     */
+    private String appKey;
+
+    /**
+     * 游戏标签
+     */
+    private String tags;
+
+    /**
+     * 游戏类型
+     */
+    private String category;
+
+    /**
+     * 游戏类别
+     */
+    private Integer classify;
+
+    /**
+     * 网页游戏图标,200*200
+     */
+    private String icon;
+
+    /**
+     * CP回调路径
+     */
+    private String cpPaybackUrl;
+
+    /**
+     * 从属游戏
+     */
+    private Long parentId;
+
+    /**
+     * 包名
+     */
+    private String packageName;
+
+    /**
+     * 上线状态1 接入中, 2 可上线, 3 已下线
+     */
+    private Boolean status;
+
+    /**
+     * 1在线游戏 2 单机
+     */
+    private Boolean isOnline;
+
+    /**
+     * 1 不是SDK游戏  2 是SDK游戏
+     */
+    private Boolean isSdk;
+
+    /**
+     * 游戏宣传语
+     */
+    private String publicity;
+
+    /**
+     * 语言
+     */
+    private String language;
+
+    /**
+     * 游戏描述
+     */
+    private String description;
+
+    /**
+     * 游戏宣传图 JSON格式
+     */
+    private String image;
+
+    /**
+     * 苹果应用ID
+     */
+    private String appleId;
+
+    /**
+     * 是否需要强制实名认证,1为 关闭实名认证,2为 强制实名认证  3  开启实名认证
+     */
+    private Byte isAuth;
+
+    /**
+     * 扩展 JSON格式
+     */
+    private String extInfo;
+
+    /**
+     * 上线时间
+     */
+    private LocalDateTime onlineTime;
+
+    /**
+     * 1 伪删除  2 正常
+     */
+    private Boolean isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 渠道
+     */
+    private Long channel;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 61 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameCategory.java

@@ -0,0 +1,61 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 游戏来源表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_game_category")
+public class GameCategory {
+
+    /**
+     * 游戏分类ID
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 分类类型 1、游戏类型(微信小游戏/抖音小游戏/h5/app等) 2、游戏分类(策略游戏/卡牌游戏/)
+     */
+    private Boolean type;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 状态 2为启用 1 为禁用
+     */
+    private Boolean status;
+
+    /**
+     * 父分类id(顶层游戏分类为0)
+     */
+    private Long parentId;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 97 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GamePayWay.java

@@ -0,0 +1,97 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 游戏支付配置表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_game_pay_way")
+public class GamePayWay {
+
+    /**
+     * 主键id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 游戏id
+     */
+    private Long gameId;
+
+    /**
+     * 支付方式id
+     */
+    private Integer payWayId;
+
+    /**
+     * 支付code
+     */
+    private String payWayCode;
+
+    /**
+     * 支付方式自定义别名(为空时则展示支付方式+游戏名称)
+     */
+    private String payWayName;
+
+    /**
+     * 状态 1 不可用 2 可用
+     */
+    private Boolean status;
+
+    /**
+     * 支付配置json (存储根据payway设置后,配置的具体商户号信息)
+     */
+    private String payConfig;
+
+    /**
+     * 最大支付额度锁 0 正常 1 锁定
+     */
+    private Byte maxPayLock;
+
+    /**
+     * 最大支付额度
+     */
+    private BigDecimal maxPayAmount;
+
+    /**
+     * 当前已用支付额度
+     */
+    private BigDecimal currentPayAmount;
+
+    /**
+     * 是否已删除 1 已删除 2 正常
+     */
+    private Byte isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

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

@@ -0,0 +1,80 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 游戏开服表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_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 Boolean status;
+
+    /**
+     * 伪删除,2 正常,1 删除
+     */
+    private Boolean isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 77 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/GameUser.java

@@ -0,0 +1,77 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 玩家游戏表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_game_user")
+public class GameUser {
+
+    /**
+     * 主键id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 用户 id
+     */
+    private Long userId;
+
+    /**
+     * 导量的渠道ID
+     */
+    private Long guidedAgentId;
+
+    /**
+     * 游戏ID
+     */
+    private Long gameId;
+
+    /**
+     * 昵称
+     */
+    private String nickname;
+
+    /**
+     * 最近默认 2 默认 1 不默认
+     */
+    private Boolean isDefault;
+
+    /**
+     * 状态 2正常 1锁定
+     */
+    private Boolean status;
+
+    /**
+     * 累计充值
+     */
+    private BigDecimal sumMoney;
+
+    /**
+     * 开始玩时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 最后玩时间
+     */
+    private LocalDateTime updateTime;
+}

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

@@ -0,0 +1,85 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 游戏版本表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_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 已删除  2 正常
+     */
+    private Boolean isDelete;
+
+    /**
+     * 删除时间
+     */
+    private LocalDateTime deleteTime;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 192 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/Order.java

@@ -0,0 +1,192 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 支付表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_order")
+public class Order {
+
+    /**
+     * 自增ID
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * cpId
+     */
+    private Long cpId;
+
+    /**
+     * CP订单号
+     */
+    private String cpOrderId;
+
+    /**
+     * 充值用户
+     */
+    private Long userId;
+
+    /**
+     * 游戏玩家ID
+     */
+    private Long mgUserId;
+
+    /**
+     * 游戏ID
+     */
+    private Long gameId;
+
+    /**
+     * 货物总价
+     */
+    private BigDecimal amount;
+
+    /**
+     * 实际支付金额
+     */
+    private BigDecimal realAmount;
+
+    /**
+     * 游戏商品ID
+     */
+    private String productId;
+
+    /**
+     * 游戏商品数量
+     */
+    private Integer productCnt;
+
+    /**
+     * 游戏商品名称
+     */
+    private String productName;
+
+    /**
+     * 优惠券抵扣
+     */
+    private BigDecimal couponAmount;
+
+    /**
+     * 平台币使用金额
+     */
+    private BigDecimal ptbAmount;
+
+    /**
+     * 游戏币使用余额
+     */
+    private BigDecimal gmAmount;
+
+    /**
+     * 使用积分
+     */
+    private Integer integral;
+
+    /**
+     * 使用积分抵多少钱
+     */
+    private BigDecimal integralMoney;
+
+    /**
+     * 返利数量 默认为0
+     */
+    private BigDecimal rebateAmount;
+
+    /**
+     * 支付平台返回交易订单号
+     */
+    private Long merchantOrderNo;
+
+    /**
+     * 支付状态,1待支付,2 支付成功,3 已取消
+     */
+    private Boolean status;
+
+    /**
+     * 支付方式
+     */
+    private String gamePaywayId;
+
+    /**
+     * 支付时间
+     */
+    private LocalDateTime payTime;
+
+    /**
+     * 通知次数
+     */
+    private Integer cpNotifyCnt;
+
+    /**
+     * 最近通知时间
+     */
+    private Long lastCpNotifyTime;
+
+    /**
+     * 客服处理: 2正常; 1纠纷
+     */
+    private Byte isHandle;
+
+    /**
+     * 是否已分成  1未分成 2 已分成
+     */
+    private Boolean isDistribute;
+
+    /**
+     * CP通知状态,1为待处理,2为成功,3为失败
+     */
+    private Boolean cpStatus;
+
+    /**
+     * CP附加参数
+     */
+    private String ext;
+
+    /**
+     * 用户备注
+     */
+    private String memNote;
+
+    /**
+     * 管理员备注
+     */
+    private String adminNote;
+
+    /**
+     * 订单成功备注信息
+     */
+    private String remark;
+
+    /**
+     * 渠道
+     */
+    private Long channel;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 65 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/PayWay.java

@@ -0,0 +1,65 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 支付方式
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_pay_way")
+public class PayWay {
+
+    /**
+     * 支付方式
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 支付通道
+     */
+    private String code;
+
+    /**
+     * 支付名称
+     */
+    private String payName;
+
+    /**
+     * 父ID
+     */
+    private Integer parentId;
+
+    /**
+     * 支付配置(存储需要配置的信息json)
+     */
+    private String payExt;
+
+    /**
+     * 描述
+     */
+    private String desc;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 105 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/User.java

@@ -0,0 +1,105 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 玩家表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_user")
+public class User {
+
+    /**
+     * id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 所属渠道ID
+     */
+    private Long agentId;
+
+    /**
+     * 用户名
+     */
+    private String username;
+
+    /**
+     * 昵称
+     */
+    private String nickname;
+
+    /**
+     * 注册手机号
+     */
+    private String regMobile;
+
+    /**
+     * 注册邮箱
+     */
+    private String regEmail;
+
+    /**
+     * 密码
+     */
+    private String password;
+
+    /**
+     * 绑定邮箱
+     */
+    private String email;
+
+    /**
+     * 绑定手机号码
+     */
+    private String mobile;
+
+    /**
+     * 设备来源 mobile,android,iphone,ipad,web,pc,mac,wxapp
+     */
+    private String fromDevice;
+
+    /**
+     * 设备ID android 为imei ios 为idfa
+     */
+    private String deviceId;
+
+    /**
+     * 1 为试玩状态 2为正常状态,3为冻结状态
+     */
+    private Boolean status;
+
+    /**
+     * 头像
+     */
+    private String avatar;
+
+    /**
+     * 渠道
+     */
+    private Long channel;
+
+    /**
+     * 注册时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更改时间
+     */
+    private LocalDateTime updateTime;
+}

+ 70 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserExt.java

@@ -0,0 +1,70 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 玩家拓展表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_user_ext")
+public class UserExt {
+
+    /**
+     * user_id
+     */
+    @TableId(value = "id")
+    private Long userId;
+
+    /**
+     * 注册IP
+     */
+    private String regIp;
+
+    /**
+     * 真实姓名
+     */
+    private String realName;
+
+    /**
+     * 身份证类型 1、身份证
+     */
+    private Boolean identifyType;
+
+    /**
+     * 身份证
+     */
+    private String idCard;
+
+    /**
+     * 上次登录时间
+     */
+    private LocalDateTime lastLoginTime;
+
+    /**
+     * 上次登录ip
+     */
+    private String lastLoginIp;
+
+    /**
+     * 注册时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更改时间
+     */
+    private LocalDateTime updateTime;
+}

+ 65 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserLoginLog.java

@@ -0,0 +1,65 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 用户登录日志
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_user_login_log")
+public class UserLoginLog {
+
+    /**
+     * 主键id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 玩家id
+     */
+    private Long userId;
+
+    /**
+     * 推广来源
+     */
+    private Long agentId;
+
+    /**
+     * 设备来源
+     */
+    private String fromDevice;
+
+    /**
+     * 设备ID android 为imei ios 为idfa
+     */
+    private String deviceId;
+
+    /**
+     * 登录ip
+     */
+    private String loginIp;
+
+    /**
+     * 游戏id
+     */
+    private Long gameId;
+
+    /**
+     * 登录时间
+     */
+    private LocalDateTime loginTime;
+}

+ 115 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserOauth.java

@@ -0,0 +1,115 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 第三方用户授权登录表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_user_oauth")
+public class UserOauth {
+
+    /**
+     * 主键id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 关联的本站用户id
+     */
+    private Long userId;
+
+    /**
+     * 用户来源(微信/QQ/华为)
+     */
+    private String from;
+
+    /**
+     * 配置ID
+     */
+    private String confId;
+
+    /**
+     * 第三方open id
+     */
+    private String openid;
+
+    /**
+     * 第三方秘钥
+     */
+    private String accessToken;
+
+    /**
+     * 第三方唯一用户id
+     */
+    private String unionid;
+
+    /**
+     * 第三方昵称
+     */
+    private String nickname;
+
+    /**
+     * 国家
+     */
+    private String country;
+
+    /**
+     * 省份
+     */
+    private String province;
+
+    /**
+     * 城市
+     */
+    private String city;
+
+    /**
+     * 1 男 2 女 3 未知
+     */
+    private Boolean six;
+
+    /**
+     * 头像
+     */
+    private String avatar;
+
+    /**
+     * access_token过期时间
+     */
+    private Long expiresIn;
+
+    /**
+     * 扩展信息
+     */
+    private String more;
+
+    /**
+     * 最后登录ip
+     */
+    private String lastLoginIp;
+
+    /**
+     * 最后登录时间
+     */
+    private Long lastLoginTime;
+
+    /**
+     * 绑定时间
+     */
+    private LocalDateTime createTime;
+}

+ 60 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/domain/entity/UserToken.java

@@ -0,0 +1,60 @@
+package com.zanxiang.sdk.domain.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author : lingfeng
+ * @time : 2022-06-06
+ * @description : 玩家客户端登录token表
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@ToString
+@TableName("h_user_token")
+public class UserToken {
+
+    /**
+     * id
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 玩家id
+     */
+    private Long userId;
+
+    /**
+     * 过期时间
+     */
+    private Long expireTime;
+
+    /**
+     * token
+     */
+    private String token;
+
+    /**
+     * 设备类型;mobile,android,iphone,ipad,web,pc,mac,wxapp
+     */
+    private String deviceType;
+
+    /**
+     * 创建时间
+     */
+    private LocalDateTime createTime;
+
+    /**
+     * 更新时间
+     */
+    private LocalDateTime updateTime;
+}

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/ChannelMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/CpMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameCategoryMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GamePayWayMapper.java

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

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

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/GameUserMapper.java

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

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

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/OrderMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/PayWayMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserExtMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserLoginLogMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserOauthMapper.java

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

+ 12 - 0
game-module/game-sdk/src/main/java/com/zanxiang/sdk/mapper/UserTokenMapper.java

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

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/ChannelMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.ChannelMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/CpMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.CpMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GameCategoryMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GameCategoryMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GameMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GameMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GamePayWayMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GamePayWayMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GameServerMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GameServerMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GameUserMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GameUserMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/GameVersionMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.GameVersionMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/OrderMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.OrderMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/PayWayMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.PayWayMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/UserExtMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.UserExtMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/UserLoginLogMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.UserLoginLogMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/UserMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.UserMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/UserOauthMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.UserOauthMapper">
+</mapper>

+ 4 - 0
game-module/game-sdk/src/main/resources/mapper/UserTokenMapper.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.zanxiang.sdk.mapper.UserTokenMapper">
+</mapper>