KKSU
2025-04-17 074fc7dcdde6c9501e0f6ee8b247205c2f427e79
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
package cc.mrbird.febs.mall.vo.api.activity.options;
 
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 = "ApiVoteRecordInPageVo", description = "参数")
public class ApiVoteRecordInPageVo {
 
    @ApiModelProperty(value = "用户memberId")
    private Long memberId;
 
    @ApiModelProperty(value = "投票时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    @ApiModelProperty(value = "会员名称")
    private String name;
 
    @ApiModelProperty(value = "头像")
    private String avatar;
}