123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- namespace Model
- {
- public class UserConstants
- {
-
-
-
- public static string SYS_USER = "SYS_USER";
-
-
-
- public static string NORMAL = "0";
-
-
-
- public static string EXCEPTION = "1";
-
-
-
- public static string USER_DISABLE = "1";
-
-
-
- public static string ROLE_DISABLE = "1";
-
-
-
- public static int DEPT_NORMAL = 0;
-
-
-
- public static string DEPT_DISABLE = "1";
-
-
-
- public static string DICT_NORMAL = "0";
-
-
-
- public static string YES = "Y";
-
-
-
- public static string YES_FRAME = "1";
-
-
-
- public static string NO_FRAME = "0";
-
-
-
- public static string TYPE_DIR = "M";
-
-
-
- public static string TYPE_MENU = "C";
-
-
-
- public static string TYPE_BUTTON = "F";
-
-
-
-
-
-
-
- public static string LAYOUT = "Layout";
-
-
-
- public static string PARENT_VIEW = "ParentView";
-
-
-
- public static string INNER_LINK = "InnerLink";
-
-
-
- public static string UNIQUE = "0";
- public static string NOT_UNIQUE = "1";
-
-
-
- public static string HTTP = "http://";
-
-
-
- public static string HTTPS = "https://";
-
-
-
- public static string WWW = "www.";
- }
- }
|