Helius
2021-07-23 71bf751d248aff415c95b2bc09dc1bb0219c9428
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;
 
}