5 changed files with 42 additions and 3 deletions
@ -0,0 +1,31 @@ |
|||
/** |
|||
* Copyright (c) 2018 人人开源 All rights reserved. |
|||
* <p> |
|||
* https://www.renren.io
|
|||
* <p> |
|||
* 版权所有,侵权必究! |
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 上传信息 |
|||
* |
|||
* @author Mark sunlightcs@gmail.com |
|||
* @since 1.1.0 |
|||
*/ |
|||
@Data |
|||
public class UploadDTO { |
|||
/** |
|||
* 文件URL |
|||
*/ |
|||
private String url; |
|||
|
|||
/** |
|||
* 文件大小,单位字节 |
|||
*/ |
|||
private Long size; |
|||
|
|||
} |
|||
Loading…
Reference in new issue