| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @Data |
| | | @ApiModel("问卷题目选项") |
| | | public class ComActQuestnaireSubSelectionVO { |
| | | @ApiModelProperty("ID") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | @ApiModelProperty("问题题目ID") |
| | | private Long queSubId; |
| | | @ApiModelProperty("选项名") |
| | | private String optionName; |
| | | @ApiModelProperty("选项内容") |
| | | private String content; |
| | | @ApiModelProperty("选项类型 0 固定选项 1 自定义选项") |
| | | private Integer type; |
| | | |
| | | } |