init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user