dashboard
repositories
filestore
activity
login
blog
/
blog-admin
blog的后端代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
文章添加
inleft
2022-02-21
552004d0902687de16cd50e3378d4d6671d7f015
[blog/blog-admin.git]
/
snowy-base
/
snowy-core
/
src
/
main
/
java
/
vip
/
xiaonuo
/
core
/
consts
/
MyConstant.java
1
2
3
4
5
6
7
8
9
10
11
12
package vip.xiaonuo.core.consts;
public interface MyConstant {
Integer Yes = 1;
Integer No = 1;
interface AuthStatus {
int publicCode = 1;
int privateCode = 2;
int authCode = 3;
}
}