inleft
2022-02-21 cfde488bdd0163986087c880e0a2762645f8c14c
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;
    }
}