package com.xcong.excoin.modules.fish.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@TableName("cannon_award")
|
public class CannonAward {
|
private Long id;
|
private String name;
|
//活动编码
|
private String code;
|
|
private Integer quantity;
|
private Integer surplusQuantity;
|
private Integer type;
|
private Integer state;
|
private Integer chance;
|
private String activityCode;
|
}
|