package com.javaweb.geotdp.vo; /** * 上传 取土 记录 */ public class RecordQTVo extends RecordBaseVo{ private Double beginDepth ;// 起始深度(用于展示) private Double endDepth ;// 终止深度(用于展示) private String earthType ;// 土样质量等级(Ⅰ级样、Ⅱ级样、Ⅲ级样、Ⅳ级样) /** * 取样工具和方法 * (薄壁取土器、回转取土器、厚壁取土器、标准贯入器、螺纹钻头、岩心钻头、探井(槽)中可取土样) */ private String getMode ; /** * 实验类型 * (岩石试验、土的物理性质试验 、土的压缩固结试验 、土的抗剪强度试验、土的动力性质试验) */ private String testType ; public Double getBeginDepth() { return beginDepth; } public void setBeginDepth(Double beginDepth) { this.beginDepth = beginDepth; } public Double getEndDepth() { return endDepth; } public void setEndDepth(Double endDepth) { this.endDepth = endDepth; } public String getEarthType() { return earthType; } public void setEarthType(String earthType) { this.earthType = earthType; } public String getGetMode() { return getMode; } public void setGetMode(String getMode) { this.getMode = getMode; } public String getTestType() { return testType; } public void setTestType(String testType) { this.testType = testType; } }