| | |
| | | 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; |
| | |
| | | public class ComActQuestnaireAppVO { |
| | | |
| | | @ApiModelProperty("调查问卷id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | @ApiModelProperty("组件唯一key") |
| | | private String projectKey; |
| | |
| | | private Integer adverPositionApplication; |
| | | @ApiModelProperty("是否显示提醒(1.是 2.否)") |
| | | private Integer isDisplay = 2; |
| | | @ApiModelProperty("提供居民(1.是 2.否 )") |
| | | private Integer forMasses; |
| | | @ApiModelProperty("提供党员(1.是 2.否 )") |
| | | private Integer forParty; |
| | | @ApiModelProperty("提供志愿者(1.是 2.否 )") |
| | | private Integer forVolunteer; |
| | | } |