rename com.imyeyu.server to com.imyeyu.api

This commit is contained in:
Timi
2025-07-22 15:26:14 +08:00
parent e816b885b2
commit 323e038e86
340 changed files with 1174 additions and 1175 deletions

View File

@ -0,0 +1,30 @@
package com.imyeyu.api.bean;
import lombok.Data;
import com.imyeyu.utils.OS;
import java.io.InputStream;
/**
* 资源文件
*
* @author 夜雨
* @since 2021-07-31 15:31
*/
@Data
public class ResourceFile implements OS.FileSystem {
/** 服务器文件所在路径 */
private String path;
/** 文件名 */
private String name;
/** 文件数据流 */
private InputStream inputStream;
/** @return 完整绝对路径 */
public String getFullPath() {
return path + SEP + name;
}
}