com.jladder.web.WebScopeOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jladder Show documentation
Show all versions of jladder Show documentation
with java,a low code SDK,通用低代码开发包
package com.jladder.web;
public enum WebScopeOption {
SqlDebug("SqlDebug"),
SqlCluster("SqlCluster"),
Latch("Latch"),
Analyz("Analyz"),
IgnoreRequestLog("IgnoreRequestLog");
private String name;
WebScopeOption(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}