|
|
@@ -27,4 +27,44 @@ public class Const {
|
|
|
* 香港手机号正则
|
|
|
*/
|
|
|
public static final String REGEXP_MOBILE_HONGKONG = "[0-9]{8}";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户uu号正则
|
|
|
+ */
|
|
|
+ public static String REGEXP_USERUU_NUMBER = "[0-9]{5,10}";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 中国大陆
|
|
|
+ */
|
|
|
+ public static final String CONTINENT = "continent";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 香港
|
|
|
+ */
|
|
|
+ public static final String HONGKONG = "Hongkong";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 密码加密方式
|
|
|
+ */
|
|
|
+ public static final String ENCRY_FORMAT = "$password{$salt}";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 密码
|
|
|
+ */
|
|
|
+ public static final String ENCRY_PARAM_PASSWORD = "$password";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 盐值
|
|
|
+ */
|
|
|
+ public static final String ENCRY_PARAM_SALT = "$salt";
|
|
|
+
|
|
|
+ public static final int NO = 0;
|
|
|
+
|
|
|
+ public static final int YES = 1;
|
|
|
+
|
|
|
+ public static final String SUCCESS = "success";
|
|
|
+
|
|
|
+ public static final String ERROR = "error";
|
|
|
+
|
|
|
+ public static Long SPACEUU_PERSONAL = 1L;
|
|
|
}
|