mirror of
https://github.com/Hello-hao/Tbed.git
synced 2026-09-20 03:18:28 +00:00
21 lines
514 B
Java
21 lines
514 B
Java
package cn.hellohao.config;
|
|
|
|
/**
|
|
* @author Hellohao
|
|
* @version 1.0
|
|
* @date 2020/5/15 9:20
|
|
*/
|
|
public class SysName {
|
|
public static final String SYSNAME = "root,hellohaocheck,selectdomain,image,HellohaoData,TOIMG," +
|
|
"user,users,admin,retrievepass,deleteimg,hellohaotempimg,360,hellohaotempwatermarimg,components,log";
|
|
|
|
public static Boolean CheckSysName(String name){
|
|
boolean b = true;
|
|
if(SYSNAME.contains(name)){
|
|
b = false;
|
|
}
|
|
return b ;
|
|
}
|
|
|
|
}
|