package com.javaweb.geotdp.vo; /** * 原位测试 包含 记录-标贯 记录-动探 */ public class RecordYWVo extends RecordBaseVo{ private Double drillLength ;// 钻杆长度(必填) private Double begin1 ;// 起始深度(必填) private Double end1 ;// 终止深度(必填) private Double blow1 ;// 击数(必填) private Double begin2 ;// private Double end2 ;// private Double blow2 ;// private Double begin3 ;// private Double end3 ;// private Double blow3 ;// private Double begin4 ;// private Double end4 ;// private Double blow4 ;// private String powerType;// 动探类型(轻型、重型、超重型) // private Double drillLength ;// 钻杆长度 // private Double begin1 ;// 起始深度(用于展示) // private Double end1 ;// 终止深度(用于展示) // private Double blow1 ;// 击数 private String type ; public String getType() { return type; } public void setType(String type) { this.type = type; } public Double getDrillLength() { return drillLength; } public void setDrillLength(Double drillLength) { this.drillLength = drillLength; } public Double getBegin1() { return begin1; } public void setBegin1(Double begin1) { this.begin1 = begin1; } public Double getEnd1() { return end1; } public void setEnd1(Double end1) { this.end1 = end1; } public Double getBlow1() { return blow1; } public void setBlow1(Double blow1) { this.blow1 = blow1; } public Double getBegin2() { return begin2; } public void setBegin2(Double begin2) { this.begin2 = begin2; } public Double getEnd2() { return end2; } public void setEnd2(Double end2) { this.end2 = end2; } public Double getBlow2() { return blow2; } public void setBlow2(Double blow2) { this.blow2 = blow2; } public Double getBegin3() { return begin3; } public void setBegin3(Double begin3) { this.begin3 = begin3; } public Double getEnd3() { return end3; } public void setEnd3(Double end3) { this.end3 = end3; } public Double getBlow3() { return blow3; } public void setBlow3(Double blow3) { this.blow3 = blow3; } public Double getBegin4() { return begin4; } public void setBegin4(Double begin4) { this.begin4 = begin4; } public Double getEnd4() { return end4; } public void setEnd4(Double end4) { this.end4 = end4; } public Double getBlow4() { return blow4; } public void setBlow4(Double blow4) { this.blow4 = blow4; } public String getPowerType() { return powerType; } public void setPowerType(String powerType) { this.powerType = powerType; } }