package com.ruoyi.basic.enums; public enum ApplicationTypeEnum { IMAGE("image"), FILE("file"); private final String type; ApplicationTypeEnum(String type) { this.type = type; } public String getType() { return type; } }