d0231801cb4454364eca17a03bb5c8ccc0969033.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:BisInspAllObj
  8. *
  9. * @author lune
  10. * @date 2019-2-23
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspAllObj extends BaseBean 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. @ApiModelProperty("机构标识")
  24. private String orgId;
  25. @ApiModelProperty("地区编码")
  26. private String adCode;
  27. @ApiModelProperty("登记表行政区划")
  28. private String objAdCode;
  29. public String getObjAdCode() {
  30. return objAdCode;
  31. }
  32. public void setObjAdCode(String objAdCode) {
  33. this.objAdCode = objAdCode;
  34. }
  35. @Override
  36. public String getOrgId() {
  37. return orgId;
  38. }
  39. @Override
  40. public void setOrgId(String orgId) {
  41. this.orgId = orgId;
  42. }
  43. public String getAdCode() {
  44. return adCode;
  45. }
  46. public void setAdCode(String adCode) {
  47. this.adCode = adCode;
  48. }
  49. public Double getLgtdpc() {
  50. return lgtdpc;
  51. }
  52. public void setLgtdpc(Double lgtdpc) {
  53. this.lgtdpc = lgtdpc;
  54. }
  55. public Double getLttdpc() {
  56. return lttdpc;
  57. }
  58. public void setLttdpc(Double lttdpc) {
  59. this.lttdpc = lttdpc;
  60. }
  61. public BisInspAllObj() {
  62. }
  63. public String getCode() {
  64. return code;
  65. }
  66. public void setCode(String code) {
  67. this.code = code;
  68. }
  69. public String getId() {
  70. return id;
  71. }
  72. public void setId(String id) {
  73. this.id = id;
  74. }
  75. public String getNm() {
  76. return nm;
  77. }
  78. public void setNm(String nm) {
  79. this.nm = nm;
  80. }
  81. public String getPtype() {
  82. return ptype;
  83. }
  84. public void setPtype(String ptype) {
  85. this.ptype = ptype;
  86. }
  87. public Double getLgtd() {
  88. return lgtd;
  89. }
  90. public void setLgtd(Double lgtd) {
  91. this.lgtd = lgtd;
  92. }
  93. public Double getLttd() {
  94. return lttd;
  95. }
  96. public void setLttd(Double lttd) {
  97. this.lttd = lttd;
  98. }
  99. @Override
  100. public String getObjId() {
  101. return objId;
  102. }
  103. @Override
  104. public void setObjId(String objId) {
  105. this.objId = objId;
  106. }
  107. @Override
  108. public String toString() {
  109. return "BisInspAllObj{" +
  110. "code='" + code + '\'' +
  111. ", id='" + id + '\'' +
  112. ", nm='" + nm + '\'' +
  113. ", ptype='" + ptype + '\'' +
  114. ", lgtd=" + lgtd +
  115. ", lttd=" + lttd +
  116. ", objId='" + objId + '\'' +
  117. ", lgtdpc=" + lgtdpc +
  118. ", lttdpc=" + lttdpc +
  119. '}';
  120. }
  121. }