inleft
2022-02-25 cb2e50914c13bf63c9415fae01063fe74e7ae292
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;
    }
}