package cc.mrbird.febs.mall.vo.activity; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.Date; @Data @ApiModel(value = "ApiVoteActivityHotVo", description = "参数") public class ApiVoteActivityHotVo { @ApiModelProperty(value = "参与选手数量") private Integer optionCnt; @ApiModelProperty(value = "累计总票数") private Integer followVoteCnt; }