| | |
| | | @ApiModel(value = "OwnCannonVo", description = "金币账户") |
| | | public class OwnCannonVo { |
| | | |
| | | private Long memberId; |
| | | @ApiModelProperty(value = "炮台UUID")//炮台UUID |
| | | private String cannonUuid; |
| | | private Long id; |
| | | @ApiModelProperty(value = "炮台图片")//炮台图片 |
| | | private String cannonImg; |
| | | @ApiModelProperty(value = "炮弹图片")//炮弹图片 |
| | | private String bulletImg; |
| | | @ApiModelProperty(value = "炮台名称")//炮台名称 |
| | | private String cannonName; |
| | | private String name; |
| | | @ApiModelProperty(value = "炮台编码")//炮台编码 |
| | | private String cannonCode; |
| | | private String code; |
| | | @ApiModelProperty(value = "炮台兑换价格")//炮台兑换价格 |
| | | private BigDecimal cannonPrice; |
| | | private BigDecimal exchangePrice; |
| | | @ApiModelProperty(value = "每发炮弹消耗金币数")//消耗金币 |
| | | private BigDecimal goldConsume; |
| | | @ApiModelProperty(value = "1:主动购买 2:系统赠送")//1:主动购买 2:系统赠送 |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "是否拥有 1-是 2-否") |
| | | private int isHas; |
| | | } |