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;
|
|
}
|