You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
292 B
24 lines
292 B
package com.coin.oss.entity;
|
|
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 上传返回体
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
@Data
|
|
@Builder
|
|
public class UploadResult {
|
|
|
|
/**
|
|
* 文件路径
|
|
*/
|
|
private String url;
|
|
|
|
/**
|
|
* 文件名
|
|
*/
|
|
private String filename;
|
|
}
|
|
|