peng
2 天以前 6c3c5f3fb28cc65684e065b60a09768cf8a77429
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
26
27
28
29
30
31
32
33
34
35
36
37
38
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
 
/**
 * 抽奖用户规则配置
 *
 * @author peng
 * @since 2025-09-29
 */
@Data
@TableName("lmk_add_prize_rule")
public class AddPrizeRule extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("rule_name")
    /** 规则名称 */
    private String ruleName;
 
    @TableField("rule_code")
    /** 规则编码 */
    private String ruleCode;
 
    @TableField("rule_value")
    /** 规则值 */
    private String ruleValue;
 
    @TableField("add_num")
    /** 增加次数 */
    private Integer addNum;
 
 
}