copy from rsf-open-api/src/main/java/com/vincent/rsf/openApi/entity/CommonResponse.java
copy to rsf-server/src/main/java/com/vincent/rsf/server/api/entity/CommonResponse.java
File was copied from rsf-open-api/src/main/java/com/vincent/rsf/openApi/entity/CommonResponse.java |
| | |
| | | package com.vincent.rsf.openApi.entity; |
| | | package com.vincent.rsf.server.api.entity; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/27 |
| | | * @description: 通用响应结果 |
| | | * @version 1.0 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "CommonResponse", description = "通用响应结果 ") |
| | |
| | | @ApiModelProperty("响应结果") |
| | | private Object data; |
| | | |
| | | } |
| | | } |