09e9b527fb52e3e1a7e673eb4bc197879ed4bc39.svn-base 1.2 KB

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