Administrator
5 days ago d3844ee25fbb06b656b5521978f083695d194b07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
 
}