From 62d7a119eff0f11e4cf3f98249e1b8d978507944 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 24 Nov 2021 15:19:57 +0800 Subject: [PATCH] Merge branch 'fish' of http://120.27.238.55:7000/r/exchange into fish --- src/main/java/com/xcong/excoin/modules/fish/entity/CannonGameRecord.java | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/fish/entity/CannonGameRecord.java b/src/main/java/com/xcong/excoin/modules/fish/entity/CannonGameRecord.java new file mode 100644 index 0000000..1e00477 --- /dev/null +++ b/src/main/java/com/xcong/excoin/modules/fish/entity/CannonGameRecord.java @@ -0,0 +1,29 @@ +package com.xcong.excoin.modules.fish.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.xcong.excoin.common.system.base.BaseEntity; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * 游戏记录 + */ +@Data +@TableName("cannon_game_record") +public class CannonGameRecord extends BaseEntity { + + private Long memberId; + //用户拥有炮台记录ID + private Long cannonOwnId; + //炮台名称 + private String cannonName; + //炮台编码 + private String cannonCode; + //消耗金币 + private BigDecimal goldConsume; + //获得金币 + private BigDecimal goldReward; + + +} -- Gitblit v1.9.1