| | |
| | | @ApiModelProperty(value = "序号") |
| | | private int sort; |
| | | @ApiModelProperty(value = "题目内容") |
| | | private String content; |
| | | private String label; |
| | | @ApiModelProperty(value = "类型 0单选1多选2问答题", example = "0") |
| | | private int type; |
| | | private Integer type; |
| | | @ApiModelProperty(value = "问卷题目选项") |
| | | private List<QuestnaiteSubSelectionVO> questnaiteSubSelectionVOS; |
| | | private List<QuestnaiteSubSelectionVO> options; |
| | | @ApiModelProperty(value = "问卷题目题目key") |
| | | private String key; |
| | | @ApiModelProperty(value = "答题选项内容key") |
| | | private String values; |
| | | |
| | | /** |
| | | * 0单选1多选2问答题 |
| | | */ |
| | | public interface type{ |
| | | int danxuan = 0; |
| | | int duoxuan = 1; |
| | | int wenda = 2; |
| | | } |
| | | } |