Constant.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.bowintek.practice.util;
  2. import java.util.HashMap;
  3. public class Constant {
  4. public static final String YES = "是";
  5. public static final String No = "否";
  6. /**
  7. * 井生产状态
  8. */
  9. public static final HashMap<String,String> FACT_CURRENT_STATE=new HashMap<>(){
  10. {
  11. this.put("00","停用不启用流程");
  12. this.put("01","停用但启用流程");
  13. this.put("02","启用但不启用流");
  14. this.put("11","启用并启用流程");
  15. }
  16. };
  17. /**
  18. * 裸眼井解释成果类型
  19. */
  20. public static final HashMap<String,String> BOREHOLE_INTER_TYPE=new HashMap<>(){
  21. {
  22. this.put("00","裸眼井基本解释成果");
  23. this.put("01","岩石力学参数");
  24. this.put("02","储层孔隙结构评价");
  25. this.put("04","裂缝型地层测井解释成果");
  26. this.put("05","烃源岩解释成果");
  27. this.put("06","致密油气储层解释成果");
  28. this.put("07","煤层气测井解释成果");
  29. this.put("08","页岩气测井解释成果");
  30. }
  31. };
  32. }