2022-08-24 00:10:59 +08:00
|
|
|
package net.maku.system.vo;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import net.maku.framework.common.utils.DateUtils;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 附件管理
|
|
|
|
|
*
|
|
|
|
|
* @author 阿沐 babamu@126.com
|
2023-02-21 16:44:04 +08:00
|
|
|
* <a href="https://maku.net">MAKU</a>
|
2022-08-24 00:10:59 +08:00
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@Schema(description = "附件管理")
|
|
|
|
|
public class SysAttachmentVO implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "id")
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "附件名称")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "附件地址")
|
|
|
|
|
private String url;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "附件大小")
|
|
|
|
|
private Long size;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "存储平台")
|
|
|
|
|
private String platform;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建时间")
|
|
|
|
|
@JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN)
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
}
|