| | |
| | | package com.ots.project.exam.domain; |
| | | |
| | | import com.ots.framework.aspectj.lang.annotation.Excel; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import com.ots.framework.web.domain.BaseEntity; |
| | | |
| | | /** |
| | | * 问卷类型对象 t_exam_level |
| | | * |
| | | * @author ots |
| | | * @date 2019-12-15 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | public class TExamLevel extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /** 问卷编码 */ |
| | | private Long id; |
| | | |
| | | |
| | | /** 问卷名称 */ |
| | | @Excel(name = "问卷名称") |
| | | private String levelName; |
| | | |
| | | private String langType; |
| | | |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | | |
| | | |
| | | // 题目维度Id |
| | | private Integer subjectId; |
| | | |
| | | |
| | | /**题目模板id*/ |
| | | private String questionTemplateId; |
| | | |
| | | |
| | | /**题目模板名称*/ |
| | | @Excel(name = "题目模板") |
| | | private String questionTemplateName; |
| | | |
| | | private String uuid; |
| | | |
| | | private Integer type; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |