package com.ruoyi.goods.api.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/5/26 18:00
|
*/
|
@Data
|
@TableName("t_lottery_event_questions")
|
public class LotteryEventQuestions {
|
/**
|
* 数据id
|
*/
|
@TableId(value = "id", type = IdType.INPUT)
|
private String id;
|
/**
|
* 抽奖活动id
|
*/
|
@TableField(value = "lottery_event_id")
|
private String lotteryEventId;
|
/**
|
* 题干名称
|
*/
|
@TableField(value = "name")
|
private String name;
|
/**
|
* 排序
|
*/
|
@TableField(value = "sort")
|
private Integer sort;
|
|
}
|