sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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 com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
@ApiModel(value = "热门问题列表Vo")
public class HotIssuesListVo {
 
    @ApiModelProperty(value = "主键id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "问题内容")
    private String issuesContent;
 
    @ApiModelProperty(value = "应答内容")
    private String answerContent;
 
    @ApiModelProperty(value = "排序序号")
    private Integer seqencing;
 
}