1234567891011121314151617181920212223242526272829303132333435 |
- package com.bowintek.practice.util;
- import java.util.HashMap;
- public class Constant {
- public static final String YES = "是";
- public static final String No = "否";
- /**
- * 井生产状态
- */
- public static final HashMap<String,String> FACT_CURRENT_STATE=new HashMap<>(){
- {
- this.put("00","停用不启用流程");
- this.put("01","停用但启用流程");
- this.put("02","启用但不启用流");
- this.put("11","启用并启用流程");
- }
- };
- /**
- * 裸眼井解释成果类型
- */
- public static final HashMap<String,String> BOREHOLE_INTER_TYPE=new HashMap<>(){
- {
- this.put("00","裸眼井基本解释成果");
- this.put("01","岩石力学参数");
- this.put("02","储层孔隙结构评价");
- this.put("04","裂缝型地层测井解释成果");
- this.put("05","烃源岩解释成果");
- this.put("06","致密油气储层解释成果");
- this.put("07","煤层气测井解释成果");
- this.put("08","页岩气测井解释成果");
- }
- };
- }
|