d0c794ca44c1017bd8dda8764d0ad88d317b44f5.svn-base 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * BisInspAllObjParam
  9. *
  10. * @author lune
  11. * @date 2019-2-23
  12. */
  13. public class BisInspAllObjParam extends PageParam implements Serializable {
  14. private String code;
  15. private String id;
  16. private String nm;
  17. private String ptype;
  18. private Double lgtd;
  19. private Double lttd;
  20. private String objId;
  21. private Double lgtdpc;
  22. private Double lttdpc;
  23. private String adCode;
  24. @ApiModelProperty("登记表行政区划")
  25. private String objAdCode;
  26. /**
  27. * 是否省属 1是 2否
  28. */
  29. @ApiParam(
  30. name = "provincial",
  31. value = "是否省属:1是2否"
  32. )
  33. private String provincial;
  34. public String getObjAdCode() {
  35. return objAdCode;
  36. }
  37. public void setObjAdCode(String objAdCode) {
  38. this.objAdCode = objAdCode;
  39. }
  40. public String getAdCode() {
  41. return adCode;
  42. }
  43. public void setAdCode(String adCode) {
  44. this.adCode = adCode;
  45. }
  46. public Double getLgtdpc() {
  47. return lgtdpc;
  48. }
  49. public void setLgtdpc(Double lgtdpc) {
  50. this.lgtdpc = lgtdpc;
  51. }
  52. public Double getLttdpc() {
  53. return lttdpc;
  54. }
  55. public void setLttdpc(Double lttdpc) {
  56. this.lttdpc = lttdpc;
  57. }
  58. public BisInspAllObjParam() {
  59. }
  60. public String getCode() {
  61. return code;
  62. }
  63. public void setCode(String code) {
  64. this.code = code;
  65. }
  66. public String getId() {
  67. return id;
  68. }
  69. public void setId(String id) {
  70. this.id = id;
  71. }
  72. public String getNm() {
  73. return nm;
  74. }
  75. public void setNm(String nm) {
  76. this.nm = nm;
  77. }
  78. public String getPtype() {
  79. return ptype;
  80. }
  81. public void setPtype(String ptype) {
  82. this.ptype = ptype;
  83. }
  84. public Double getLgtd() {
  85. return lgtd;
  86. }
  87. public void setLgtd(Double lgtd) {
  88. this.lgtd = lgtd;
  89. }
  90. public Double getLttd() {
  91. return lttd;
  92. }
  93. public void setLttd(Double lttd) {
  94. this.lttd = lttd;
  95. }
  96. public String getObjId() {
  97. return objId;
  98. }
  99. public void setObjId(String objId) {
  100. this.objId = objId;
  101. }
  102. public String getProvincial() {
  103. return provincial;
  104. }
  105. public void setProvincial(String provincial) {
  106. this.provincial = provincial;
  107. }
  108. }