Administrator
9 days ago fd2e2482770479c41bb2cf61b019cc86eb65e077
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
 
    @ApiModelProperty(value = "活动开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date startTime;
 
 
    @ApiModelProperty(value = "活动结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endTime;
 
 
}