|
@@ -1,6 +1,14 @@
|
|
|
-package com.example.xiaoshiweixinback.business.common.base;
|
|
|
+package com.bjbz.lcgj.common.constant;
|
|
|
|
|
|
-public class IfConstant {
|
|
|
- public static final Integer NO = 0;
|
|
|
- public static final Integer YES = 1;
|
|
|
+public interface IfConstant {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @Fields YES : 是
|
|
|
+ */
|
|
|
+ public static final int YES = 1;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @Fields NO : 否
|
|
|
+ */
|
|
|
+ public static final int NO = 0;
|
|
|
}
|