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.
35 lines
504 B
35 lines
504 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
* <p>
|
|
* https://www.renren.io
|
|
* <p>
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.elink.esua.epdc;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 上传信息
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.1.0
|
|
*/
|
|
@Data
|
|
public class UploadImgAllDTO {
|
|
/**
|
|
* 图片URL
|
|
*/
|
|
private String imgUrl;
|
|
|
|
/**
|
|
* 图片缩略图URL
|
|
*/
|
|
private String thumbnail;
|
|
/**
|
|
* 文件名
|
|
*/
|
|
private String fileName;
|
|
|
|
}
|
|
|