This commit is contained in:
77
2024-04-24 00:37:29 +08:00
parent 9aa4bd3044
commit 417d2a8ff7
5 changed files with 51 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
package com.ruoyi.xq.enums.image;
import lombok.Getter;
@Getter
public enum ImagesEnums {
VIP_LOG("xq/images/logs/"),
CONSUMER_LOG("xq/images/logs/"),
SYSTEM_LOG("xq/images/logs/"),
LOGO_LOG("xq/images/logs/"),
;
private final String path;
ImagesEnums(String path) {
this.path = path;
}
}