| 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; | 
|   | 
| } |