You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.iformall.common;
-
- public interface CommonConstants {
- /**
- * 状态(0:正常,1:锁定)
- */
- Integer STATUS_NORMAL = 0;
- Integer STATUS_ABNORMAL = 1;
-
- /**
- * 是否:0:否,1:是
- * 是否删除状态(0:未删除,1:已删除)
- */
- Integer FLAG_TRUE = 1;
- Integer FLAG_FALSE = 0;
-
- /**
- * 通用数字
- */
- int NUM_0 = 0;
- int NUM_1 = 1;
- int NUM_2 = 2;
- }
|