package com.smartor.domain; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
  
 | 
/** 
 | 
 * 题目对象 svy_topic 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2023-06-26 
 | 
 */ 
 | 
@Data 
 | 
public class SvyTopic extends BaseEntity { 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /** 
 | 
     * 自增ID 
 | 
     */ 
 | 
    private Long topicid; 
 | 
  
 | 
    /** 
 | 
     * 题目类型;枚举 1.单选 2多选 3填空 
 | 
     */ 
 | 
    @Excel(name = " 题目类型;枚举 1.单选 2多选 3填空 ") 
 | 
    private Long topictype; 
 | 
  
 | 
    /** 
 | 
     * 题目Code 
 | 
     */ 
 | 
    @Excel(name = " 题目Code ") 
 | 
    private String topiccode; 
 | 
    private String guid; 
 | 
  
 | 
    /** 
 | 
     * 题目 
 | 
     */ 
 | 
    @Excel(name = " 题目 ") 
 | 
    private String topic; 
 | 
  
 | 
    /** 
 | 
     * 题目标签 
 | 
     */ 
 | 
    @Excel(name = "题目标签") 
 | 
    private String tag; 
 | 
  
 | 
    /** 
 | 
     * 排序 
 | 
     */ 
 | 
    @Excel(name = " 排序 ") 
 | 
    private Long sort; 
 | 
  
 | 
    /** 
 | 
     * 是否必填 
 | 
     */ 
 | 
    @Excel(name = " 是否必填 ") 
 | 
    private Long ismandatory; 
 | 
  
 | 
    /** 
 | 
     * 是否隐藏 
 | 
     */ 
 | 
    @Excel(name = " 是否隐藏 ") 
 | 
    private Long ishide; 
 | 
  
 | 
    /** 
 | 
     * 删除标记 
 | 
     */ 
 | 
    private String delFlag; 
 | 
  
 | 
    /** 
 | 
     * 机构ID 
 | 
     */ 
 | 
    @Excel(name = " 机构ID ") 
 | 
    private String orgid; 
 | 
  
 | 
    /** 
 | 
     * 上传标记 
 | 
     */ 
 | 
    @Excel(name = " 上传标记 ") 
 | 
    private Long isupload; 
 | 
  
 | 
    /** 
 | 
     * 上传时间 
 | 
     */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date uploadTime; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 上传标记 
 | 
     */ 
 | 
    @ApiModelProperty(value = "答案") 
 | 
    private String answer; 
 | 
  
 | 
  
 | 
} 
 |