| package com.vincent.rsf.server.api.entity; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import lombok.experimental.Accessors; | 
|   | 
| @Data | 
| @Accessors(chain = true) | 
| @ApiModel(value = "CommonResponse", description = "通用响应结果 ") | 
| public class CommonResponse { | 
|   | 
|     @ApiModelProperty("响应编码") | 
|     private Integer code; | 
|   | 
|     @ApiModelProperty("响应消息") | 
|     private String msg; | 
|   | 
|     @ApiModelProperty("响应结果") | 
|     private Object data; | 
|   | 
| } |