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