Administrator
2025-05-27 be629a8b5fd0b4ea2950cf1e204c56119bab37bc
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;
 
}