|
@ -16,6 +16,8 @@ public class WlyySurveyTemplateOptionVO extends UuidIdentityVO {
|
|
|
private String questionCode;//模板问题编码',
|
|
|
@ApiModelProperty(value = "选项内容", example = "模块1")
|
|
|
private String content;//选项内容',
|
|
|
@ApiModelProperty(value = "是否有备注,0没有,1有", example = "模块1")
|
|
|
private String haveComment;
|
|
|
@ApiModelProperty(value = "选项说明是否必填(0否 1是)", example = "模块1")
|
|
|
private Integer isRequired;//选项说明是否必填(0否 1是)',
|
|
|
@ApiModelProperty(value = "选项分值", example = "模块1")
|
|
@ -100,4 +102,12 @@ public class WlyySurveyTemplateOptionVO extends UuidIdentityVO {
|
|
|
public void setSort(Integer sort) {
|
|
|
this.sort = sort;
|
|
|
}
|
|
|
|
|
|
public String getHaveComment() {
|
|
|
return haveComment;
|
|
|
}
|
|
|
|
|
|
public void setHaveComment(String haveComment) {
|
|
|
this.haveComment = haveComment;
|
|
|
}
|
|
|
}
|