d7ba4c73b9c90aecac6fdf7a2df7668a420ea0d3.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. * @author lhc
  8. * @date 2019/11/18 15:34
  9. */
  10. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  11. public class BisInspOffLineObj extends BaseBean implements Serializable {
  12. @ApiModelProperty(value = "对象ID", name = "id")
  13. private String id;
  14. @ApiModelProperty(value = "对象类型", name = "objType")
  15. private String objType;
  16. @ApiModelProperty(value = "基本信息", name = "base")
  17. private String base;
  18. @ApiModelProperty(value = "登记信息", name = "register")
  19. private String register;
  20. @ApiModelProperty(value = "问题信息", name = "problem")
  21. private String problem;
  22. @ApiModelProperty(value = "行政区代码", name = "adCode")
  23. private String adCode;
  24. @ApiModelProperty(value = "行政区名称", name = "adName")
  25. private String adName;
  26. @ApiModelProperty(value = "中心点经纬度", name = "centerX")
  27. private String centerX;
  28. @ApiModelProperty(value = "中心点经纬度", name = "centerY")
  29. private String centerY;
  30. @ApiModelProperty(value = "中心点经纬度", name = "gdX")
  31. private String gdX;
  32. @ApiModelProperty(value = "中心点经纬度", name = "gdY")
  33. private String gdY;
  34. @ApiModelProperty(value = "位置", name = "location")
  35. private String location;
  36. @ApiModelProperty(value = "名称", name = "nm")
  37. private String nm;
  38. @ApiModelProperty(value = "代码", name = "code")
  39. private String code;
  40. @ApiModelProperty(value = "组ID", name = "groupId")
  41. private String groupId;
  42. @ApiModelProperty(value = "操作人信息", name = "persId")
  43. private String persId;
  44. @ApiModelProperty(value = "签名信息及近期面貌信息", name = "sign")
  45. private String sign;
  46. @ApiModelProperty(value = "填报表操作", name = "bisInspOffLineRsvr")
  47. private BisInspOffLineRsvr bisInspOffLineRsvr;
  48. public BisInspOffLineObj() {
  49. }
  50. public BisInspOffLineRsvr getBisInspOffLineRsvr() {
  51. return bisInspOffLineRsvr;
  52. }
  53. public void setBisInspOffLineRsvr(BisInspOffLineRsvr bisInspOffLineRsvr) {
  54. this.bisInspOffLineRsvr = bisInspOffLineRsvr;
  55. }
  56. public String getCenterY() {
  57. return centerY;
  58. }
  59. public void setCenterY(String centerY) {
  60. this.centerY = centerY;
  61. }
  62. public String getSign() {
  63. return sign;
  64. }
  65. public void setSign(String sign) {
  66. this.sign = sign;
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getObjType() {
  75. return objType;
  76. }
  77. public void setObjType(String objType) {
  78. this.objType = objType;
  79. }
  80. public String getBase() {
  81. return base;
  82. }
  83. public void setBase(String base) {
  84. this.base = base;
  85. }
  86. public String getRegister() {
  87. return register;
  88. }
  89. public void setRegister(String register) {
  90. this.register = register;
  91. }
  92. public String getProblem() {
  93. return problem;
  94. }
  95. public void setProblem(String problem) {
  96. this.problem = problem;
  97. }
  98. public String getAdCode() {
  99. return adCode;
  100. }
  101. public void setAdCode(String adCode) {
  102. this.adCode = adCode;
  103. }
  104. public String getAdName() {
  105. return adName;
  106. }
  107. public void setAdName(String adName) {
  108. this.adName = adName;
  109. }
  110. public String getCenterX() {
  111. return centerX;
  112. }
  113. public void setCenterX(String centerX) {
  114. this.centerX = centerX;
  115. }
  116. public String getGdX() {
  117. return gdX;
  118. }
  119. public void setGdX(String gdX) {
  120. this.gdX = gdX;
  121. }
  122. public String getGdY() {
  123. return gdY;
  124. }
  125. public void setGdY(String gdY) {
  126. this.gdY = gdY;
  127. }
  128. public String getLocation() {
  129. return location;
  130. }
  131. public void setLocation(String location) {
  132. this.location = location;
  133. }
  134. public String getNm() {
  135. return nm;
  136. }
  137. public void setNm(String nm) {
  138. this.nm = nm;
  139. }
  140. public String getCode() {
  141. return code;
  142. }
  143. public void setCode(String code) {
  144. this.code = code;
  145. }
  146. @Override
  147. public String getGroupId() {
  148. return groupId;
  149. }
  150. @Override
  151. public void setGroupId(String groupId) {
  152. this.groupId = groupId;
  153. }
  154. public String getPersId() {
  155. return persId;
  156. }
  157. public void setPersId(String persId) {
  158. this.persId = persId;
  159. }
  160. }