Add createTime for AttachmentOutputDTO.

pull/146/head
ruibaby 2019-04-15 20:55:17 +08:00
parent 94e77c3d4b
commit 297b751e38
1 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@ import run.halo.app.model.entity.Attachment;
import run.halo.app.model.enums.AttachmentType;
import lombok.Data;
import java.util.Date;
/**
* Attachment output dto.
*
@ -35,4 +37,6 @@ public class AttachmentOutputDTO implements OutputConverter<AttachmentOutputDTO,
private Long size;
private AttachmentType type;
private Date createTime;
}