| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- 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;
- /**
- * <p>
- * 水库基础信息关联督查登记信息实体
- * </p>
- *
- * @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;
- }
- }
|