xiaoyong931011
2021-11-24 35d0c67bb3391d69a8333e5fad664a88a8ccfd0e
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
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 name;
    //炮台编码
    private String code;
    //兑换价格
    private BigDecimal exchangePrice;
    //消耗金币
    private BigDecimal goldConsume;
 
}