fix
Helius
2021-09-15 7ab7943de217a9e5d4a489c22c7ae27a29692d55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xzx.gc.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ViewSysNewsVo", description = "返回参数类")
public class ViewSysNewsVo {
 
    @ApiModelProperty(value = "Id")
    private long newsId;
 
    @ApiModelProperty(value = "标题")
    private String title;
 
    @ApiModelProperty(value = "内容")
    private String content;
 
    //排序
    @ApiModelProperty(value = "排序")
    private Integer sort;
 
}