代码重构

This commit is contained in:
2025-08-06 14:26:48 +08:00
parent 47258c9b35
commit b8761ef6bc
954 changed files with 111190 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package com.gear.oss.entity;
import lombok.Builder;
import lombok.Data;
/**
* 上传返回体
*
* @author Lion Li
*/
@Data
@Builder
public class UploadResult {
/**
* 文件路径
*/
private String url;
/**
* 文件名
*/
private String filename;
}