12345678910111213141516171819202122232425262728293031323334 |
- /**
- *
- */
- package com.yihu.base;
- /**
- * @author zhangzz
- * @company yihu.com
- * 2013-11-12上午9:16:51
- */
- public class Constant{
- public static final String COLUMN_NAME_NULL = "(无列名)";//参照企业管理器,当无列名时以此代替列名
- public static final Integer IS_VALID_1 = 1;
- public static final Integer IS_VALID_0 = 0;
- public static final Integer USERTYPE_DOCTOR=1;//医生角色
- public static final Integer USERTYPE_RESIDENT=2;//居民角色
- //变更管理
- public static final String RELEASE_TIME_1 = "立即";
- public static final String RELEASE_TIME_2 = "当天";
- public static final String RELEASE_TIME_3 = "无";
- public static final String STATE_1 = "待受理";
- public static final String STATE_2 = "处理完成";
- //字典
- public static final String DICT_PROJECT = "100";//涉及工程
-
- //监控对象和监控指标管理
- //JSONObject 的KEY
- public static String JSON_MESSAGE_KEY = "message";
- public static String JSON_OPERATOR_KEY= "operator";
- public static String JSON_RESULT_KEY= "result";
- public static String JSON_TOTAL_PROPERTY_KEY = "totalProperty";
- public static String JSON_PARAMETER_KEY = "parameter";
- public static Integer NOT_REAL_DELETED = 0;//伪删除
- }
|