| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty("用户姓名") |
| | | private String userName; |
| | | @ApiModelProperty("创建时间") |
| | | private String createAt; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | @ApiModelProperty("选项类型 0 固定选项 1 自定义选项") |
| | | private Integer type; |
| | | @ApiModelProperty("题目选项ID") |
| | | private Long selectionId; |
| | | } |