xiaoyong931011
2021-11-26 62f9111922c5a90063e9f4a14fc20cf42d1a56be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
 
 
}