9a1c354ab255a2b22638140abf3f79df661b506e.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 ids;
  17. private String nm;
  18. private String ptype;
  19. private Double lgtd;
  20. private Double lttd;
  21. private String objId;
  22. private Double lgtdpc;
  23. private Double lttdpc;
  24. private String adCode;
  25. @ApiModelProperty("登记表行政区划")
  26. private String objAdCode;
  27. /**
  28. * 是否省属 1是 2否
  29. */
  30. @ApiParam(
  31. name = "provincial",
  32. value = "是否省属:1是2否"
  33. )
  34. private String provincial;
  35. public String getIds() {
  36. return ids;
  37. }
  38. public void setIds(String ids) {
  39. this.ids = ids;
  40. }
  41. public String getObjAdCode() {
  42. return objAdCode;
  43. }
  44. public void setObjAdCode(String objAdCode) {
  45. this.objAdCode = objAdCode;
  46. }
  47. public String getAdCode() {
  48. return adCode;
  49. }
  50. public void setAdCode(String adCode) {
  51. this.adCode = adCode;
  52. }
  53. public Double getLgtdpc() {
  54. return lgtdpc;
  55. }
  56. public void setLgtdpc(Double lgtdpc) {
  57. this.lgtdpc = lgtdpc;
  58. }
  59. public Double getLttdpc() {
  60. return lttdpc;
  61. }
  62. public void setLttdpc(Double lttdpc) {
  63. this.lttdpc = lttdpc;
  64. }
  65. public BisInspAllObjParam() {
  66. }
  67. public String getCode() {
  68. return code;
  69. }
  70. public void setCode(String code) {
  71. this.code = code;
  72. }
  73. public String getId() {
  74. return id;
  75. }
  76. public void setId(String id) {
  77. this.id = id;
  78. }
  79. public String getNm() {
  80. return nm;
  81. }
  82. public void setNm(String nm) {
  83. this.nm = nm;
  84. }
  85. public String getPtype() {
  86. return ptype;
  87. }
  88. public void setPtype(String ptype) {
  89. this.ptype = ptype;
  90. }
  91. public Double getLgtd() {
  92. return lgtd;
  93. }
  94. public void setLgtd(Double lgtd) {
  95. this.lgtd = lgtd;
  96. }
  97. public Double getLttd() {
  98. return lttd;
  99. }
  100. public void setLttd(Double lttd) {
  101. this.lttd = lttd;
  102. }
  103. public String getObjId() {
  104. return objId;
  105. }
  106. public void setObjId(String objId) {
  107. this.objId = objId;
  108. }
  109. public String getProvincial() {
  110. return provincial;
  111. }
  112. public void setProvincial(String provincial) {
  113. this.provincial = provincial;
  114. }
  115. }