| | |
| | | /** |
| | | * id |
| | | */ |
| | | @ApiModelProperty(value = "主键id") |
| | | @TableId |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long qid; |
| | | // @ApiModelProperty(value = "主键id") |
| | | // @TableId |
| | | // @JsonSerialize(using = ToStringSerializer.class) |
| | | private String qid; |
| | | |
| | | /** |
| | | * 问题 |
| | |
| | | @Excel(name = "是否必填",dictType="sys_yes_no") |
| | | private String isRequired; |
| | | |
| | | |
| | | private String keywords; |
| | | |
| | | private String sort; |
| | | |
| | | private Long mid; |
| | | |
| | | @TableField(exist = false) |
| | | private TjSurveyTemplate template; |
| | | |
| | | /** |
| | | * 问卷选项信息 |
| | | */ |
| | |
| | | @TableField(exist = false) |
| | | private List<TjSurveyOptions> tjSurveyOptionsList; |
| | | |
| | | public void setQid(Long qid) { |
| | | this.qid = qid; |
| | | } |
| | | |
| | | public Long getQid() { |
| | | return qid; |
| | | } |
| | | |
| | | public void setQuestion(String question) { |
| | | this.question = question; |
| | | } |
| | | |
| | | public String getQuestion() { |
| | | return question; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setIsRequired(String isRequired) { |
| | | this.isRequired = isRequired; |
| | | } |
| | | |
| | | public String getIsRequired() { |
| | | return isRequired; |
| | | } |
| | | |
| | | |
| | | |
| | | public List<TjSurveyOptions> getTjSurveyOptionsList() { |
| | | return tjSurveyOptionsList; |
| | | } |
| | | |
| | | public void setTjSurveyOptionsList(List<TjSurveyOptions> tjSurveyOptionsList) { |
| | | this.tjSurveyOptionsList = tjSurveyOptionsList; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |