package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.AttRsBase; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** *

* 水库基础信息关联督查登记信息实体 *

* * @author liyz * @date 2019/6/18 10:13 **/ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class AttRsBaseRgstrDto extends AttRsBase implements Serializable { @ApiModelProperty(" 行政责任人姓名") private String wiunWaoLegPers1; @ApiModelProperty(" 行政责任人电话") private String wiunWaoLegPersTel1; @ApiModelProperty(" 行政责任人职务") private String wiunWaoLegPersDuty1; @ApiModelProperty(" 技术责任人姓名") private String techPers1; @ApiModelProperty(" 技术责任人电话") private String techPersTel1; @ApiModelProperty(" 技术责任人职务") private String techPersDuty1; @ApiModelProperty(" 巡查责任人姓名") private String patrolPers1; @ApiModelProperty(" 巡查责任人电话") private String patrolPersTel1; @ApiModelProperty(" 巡查责任人职务") private String patrolPersDuty1; public String getWiunWaoLegPers1() { return wiunWaoLegPers1; } public void setWiunWaoLegPers1(String wiunWaoLegPers1) { this.wiunWaoLegPers1 = wiunWaoLegPers1; } public String getWiunWaoLegPersTel1() { return wiunWaoLegPersTel1; } public void setWiunWaoLegPersTel1(String wiunWaoLegPersTel1) { this.wiunWaoLegPersTel1 = wiunWaoLegPersTel1; } public String getWiunWaoLegPersDuty1() { return wiunWaoLegPersDuty1; } public void setWiunWaoLegPersDuty1(String wiunWaoLegPersDuty1) { this.wiunWaoLegPersDuty1 = wiunWaoLegPersDuty1; } public String getTechPers1() { return techPers1; } public void setTechPers1(String techPers1) { this.techPers1 = techPers1; } public String getTechPersTel1() { return techPersTel1; } public void setTechPersTel1(String techPersTel1) { this.techPersTel1 = techPersTel1; } public String getTechPersDuty1() { return techPersDuty1; } public void setTechPersDuty1(String techPersDuty1) { this.techPersDuty1 = techPersDuty1; } public String getPatrolPers1() { return patrolPers1; } public void setPatrolPers1(String patrolPers1) { this.patrolPers1 = patrolPers1; } public String getPatrolPersTel1() { return patrolPersTel1; } public void setPatrolPersTel1(String patrolPersTel1) { this.patrolPersTel1 = patrolPersTel1; } public String getPatrolPersDuty1() { return patrolPersDuty1; } public void setPatrolPersDuty1(String patrolPersDuty1) { this.patrolPersDuty1 = patrolPersDuty1; } }