82405b12f6684be4906e2369bbf2f3853b849e5b.svn-base 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.AttRsBase;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. * 水库基础信息关联督查登记信息实体
  9. * </p>
  10. *
  11. * @author liyz
  12. * @date 2019/6/18 10:13
  13. **/
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class AttRsBaseRgstrDto extends AttRsBase implements Serializable {
  16. @ApiModelProperty(" 行政责任人姓名")
  17. private String wiunWaoLegPers1;
  18. @ApiModelProperty(" 行政责任人电话")
  19. private String wiunWaoLegPersTel1;
  20. @ApiModelProperty(" 行政责任人职务")
  21. private String wiunWaoLegPersDuty1;
  22. @ApiModelProperty(" 技术责任人姓名")
  23. private String techPers1;
  24. @ApiModelProperty(" 技术责任人电话")
  25. private String techPersTel1;
  26. @ApiModelProperty(" 技术责任人职务")
  27. private String techPersDuty1;
  28. @ApiModelProperty(" 巡查责任人姓名")
  29. private String patrolPers1;
  30. @ApiModelProperty(" 巡查责任人电话")
  31. private String patrolPersTel1;
  32. @ApiModelProperty(" 巡查责任人职务")
  33. private String patrolPersDuty1;
  34. public String getWiunWaoLegPers1() {
  35. return wiunWaoLegPers1;
  36. }
  37. public void setWiunWaoLegPers1(String wiunWaoLegPers1) {
  38. this.wiunWaoLegPers1 = wiunWaoLegPers1;
  39. }
  40. public String getWiunWaoLegPersTel1() {
  41. return wiunWaoLegPersTel1;
  42. }
  43. public void setWiunWaoLegPersTel1(String wiunWaoLegPersTel1) {
  44. this.wiunWaoLegPersTel1 = wiunWaoLegPersTel1;
  45. }
  46. public String getWiunWaoLegPersDuty1() {
  47. return wiunWaoLegPersDuty1;
  48. }
  49. public void setWiunWaoLegPersDuty1(String wiunWaoLegPersDuty1) {
  50. this.wiunWaoLegPersDuty1 = wiunWaoLegPersDuty1;
  51. }
  52. public String getTechPers1() {
  53. return techPers1;
  54. }
  55. public void setTechPers1(String techPers1) {
  56. this.techPers1 = techPers1;
  57. }
  58. public String getTechPersTel1() {
  59. return techPersTel1;
  60. }
  61. public void setTechPersTel1(String techPersTel1) {
  62. this.techPersTel1 = techPersTel1;
  63. }
  64. public String getTechPersDuty1() {
  65. return techPersDuty1;
  66. }
  67. public void setTechPersDuty1(String techPersDuty1) {
  68. this.techPersDuty1 = techPersDuty1;
  69. }
  70. public String getPatrolPers1() {
  71. return patrolPers1;
  72. }
  73. public void setPatrolPers1(String patrolPers1) {
  74. this.patrolPers1 = patrolPers1;
  75. }
  76. public String getPatrolPersTel1() {
  77. return patrolPersTel1;
  78. }
  79. public void setPatrolPersTel1(String patrolPersTel1) {
  80. this.patrolPersTel1 = patrolPersTel1;
  81. }
  82. public String getPatrolPersDuty1() {
  83. return patrolPersDuty1;
  84. }
  85. public void setPatrolPersDuty1(String patrolPersDuty1) {
  86. this.patrolPersDuty1 = patrolPersDuty1;
  87. }
  88. }