OssDirEnum.java 557 Bytes
package com.tanpu.community.api.enums;

public enum OssDirEnum {
    Others("others/", "其他"),
    Theme_Pic("pic/theme/","主题下的图片"),
    ;

    public String dir;
    public String type;

    public String getDir() {
        return dir;
    }

    public void setDir(String dir) {
        this.dir = dir;
    }

    public String getType() {
        return type;
    }

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

    OssDirEnum(String dir, String type) {
        this.dir = dir;
        this.type = type;
    }
}