model层FileHandleResponse.java代码

2021-10-08 15:10:07 浏览数 (1)

model层FileHandleResponse.java代码

代码语言:javascript复制
/**
 * 文件处理后回显提示的实体类
 *
 * @author xie
 * @version 1.0
 * @Date 2017/5/25
 */
public class FileHandleResponse {
    /** 上传状态,0:失败,1:上传成功 */
    private int success;

    /** 图片上传提示信息,包括上传成功或上传失败及错误信息等 */
    private String message;

    /** 图片上传成功后返回的地址 */
    private String url;

    public int getSuccess() {
        return success;
    }

    public void setSuccess(int success) {
        this.success = success;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

}

JstreeNode.java

代码语言:javascript复制
/**
 * Jstree节点实体
 *
 * @author xie
 * @version 1.0
 * @Date 2017/5/31
 */
public class JstreeNode {
    /** id并没有实际的意义,仅仅用于唯一标识节点,为了掌握节点之间的上下级关系,我们将id设为节点对file-path的相对路径 */
    private String id;

    /** 节点的显示名字,我们设为文件名 */
    private String text;

    /** 节点是否有孩子节点 */
    private boolean hasChildren;

    /** 节点类型,即文件还是文件夹,设置文件夹为0,文件为1 */
    private int type;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    public boolean isHasChildren() {
        return hasChildren;
    }

    public void setHasChildren(boolean hasChildren) {
        this.hasChildren = hasChildren;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }
}

0 人点赞