package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 一起议投票选项
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2021-01-22 15:07
|
**/
|
@Data
|
@TableName(value = "com_act_discuss_option")
|
public class ComActDiscussOptionDO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 一起议主键
|
*/
|
private Long discussId;
|
|
/**
|
* 选项内容
|
*/
|
private String optionContent;
|
|
/**
|
* 选项图片url
|
*/
|
private String optionUrl;
|
|
/**
|
* create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 是否需要填写原因
|
*/
|
private Boolean needReason;
|
}
|