inleft
2022-02-20 bd3bc193d18718e0e8cb880cbadf0b9426732ef9
commit | author | age
0613f2 1 package vip.xiaonuo.core.consts;
I 2
3 public interface MyConstant {
4     Integer Yes = 1;
5     Integer No = 1;
bd3bc1 6
I 7     interface AuthStatus {
8         int publicCode = 1;
9         int privateCode = 2;
10         int authCode = 3;
11     }
0613f2 12 }