package com.zy.sc.manager.controller.result; import lombok.Data; /** * Created by vincent on 2021/3/3 */ @Data public class LetterFileVo { private Long id; private String name; private Long updateTime; private String type; private String url; private Boolean isDir; private String smUrl; private Boolean hasSm; public LetterFileVo() { } public void setHasSm(Boolean hasSm) { this.hasSm = hasSm; } public Boolean getHasSm() { return hasSm; } public void setSmUrl(String smUrl) { this.smUrl = smUrl; } public String getSmUrl() { return smUrl; } public LetterFileVo(Long id, String name, Long updateTime, String type, String url, Boolean isDir) { this.id = id; this.name = name; this.updateTime = updateTime; this.type = type; this.url = url; this.isDir = isDir; } }