package com.gear.finance.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 抽奖管理对象 finance_lottery
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_lottery")
|
public class FinanceLottery extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 奖品名称 */
|
@Excel(name = "奖品名称")
|
private String name;
|
|
/** 奖品类型 */
|
@Excel(name = "奖品类型")
|
private Integer type;
|
|
/** 奖品内容 */
|
@Excel(name = "奖品内容")
|
private String info;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** 权重 */
|
@Excel(name = "权重")
|
private BigDecimal weight;
|
|
/** 奖品图片 */
|
@Excel(name = "奖品图片")
|
private String img;
|
|
}
|