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