xiaoyong931011
2021-12-08 f5e6133809c553cfd9fb28ee61019927c547c374
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 String image;
 
    private Integer quantity;
    private Integer surplusQuantity;
    private Integer type;
    private Integer state;
    private Integer chance;
    private String activityCode;
}