9a32ec0bb1a72ee0b41371594c2b65111dcef4ce.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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. //变更管理
  15. public static final String RELEASE_TIME_1 = "立即";
  16. public static final String RELEASE_TIME_2 = "当天";
  17. public static final String RELEASE_TIME_3 = "无";
  18. public static final String STATE_1 = "待受理";
  19. public static final String STATE_2 = "处理完成";
  20. //字典
  21. public static final String DICT_PROJECT = "100";//涉及工程
  22. //监控对象和监控指标管理
  23. //JSONObject 的KEY
  24. public static String JSON_MESSAGE_KEY = "message";
  25. public static String JSON_OPERATOR_KEY= "operator";
  26. public static String JSON_RESULT_KEY= "result";
  27. public static String JSON_TOTAL_PROPERTY_KEY = "totalProperty";
  28. public static String JSON_PARAMETER_KEY = "parameter";
  29. public static Integer NOT_REAL_DELETED = 0;//伪删除
  30. }