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 lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 炮台设置表
 */
@Data
@TableName("cannon_setting")
public class CannonSetting {
 
    private Long id;
    //炮台图片
    private String cannonImg;
    //炮弹图片
    private String bulletImg;
    //炮台名称
    private String name;
    //炮台编码
    private String code;
    //兑换价格
    private BigDecimal exchangePrice;
    //消耗金币
    private BigDecimal goldConsume;
 
}