AssetImportOwnerRoomPo.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * Copyright 2017-2020 吴学文 and java110 team.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.java110.po.log;
  17. import java.io.Serializable;
  18. import java.util.Date;
  19. /**
  20. * 类表述: Po 数据模型实体对象 基本保持与数据库模型一直 用于 增加修改删除 等时的数据载体
  21. * add by 吴学文 at 2023-06-19 00:08:14 mail: 928255095@qq.com
  22. * open source address: https://gitee.com/wuxw7/MicroCommunity
  23. * 官网:http://www.homecommunity.cn
  24. * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
  25. * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
  26. */
  27. public class AssetImportOwnerRoomPo implements Serializable {
  28. private String roomState;
  29. private String idCard;
  30. private String ownerTypeCd;
  31. private String detailId;
  32. private String unitNum;
  33. private String section;
  34. private String remark;
  35. private String floorNum;
  36. private String layer;
  37. private String roomNum;
  38. private String ownerName;
  39. private String logId;
  40. private String tel;
  41. private String state;
  42. private String communityId;
  43. private String roomRent;
  44. private String layerCount;
  45. private String sex;
  46. private String roomSubType;
  47. private String roomArea;
  48. private String statusCd = "0";
  49. private String builtUpArea;
  50. private String left;
  51. private String importUserId;
  52. private String age;
  53. public String getRoomState() {
  54. return roomState;
  55. }
  56. public void setRoomState(String roomState) {
  57. this.roomState = roomState;
  58. }
  59. public String getIdCard() {
  60. return idCard;
  61. }
  62. public void setIdCard(String idCard) {
  63. this.idCard = idCard;
  64. }
  65. public String getOwnerTypeCd() {
  66. return ownerTypeCd;
  67. }
  68. public void setOwnerTypeCd(String ownerTypeCd) {
  69. this.ownerTypeCd = ownerTypeCd;
  70. }
  71. public String getDetailId() {
  72. return detailId;
  73. }
  74. public void setDetailId(String detailId) {
  75. this.detailId = detailId;
  76. }
  77. public String getUnitNum() {
  78. return unitNum;
  79. }
  80. public void setUnitNum(String unitNum) {
  81. this.unitNum = unitNum;
  82. }
  83. public String getSection() {
  84. return section;
  85. }
  86. public void setSection(String section) {
  87. this.section = section;
  88. }
  89. public String getRemark() {
  90. return remark;
  91. }
  92. public void setRemark(String remark) {
  93. this.remark = remark;
  94. }
  95. public String getFloorNum() {
  96. return floorNum;
  97. }
  98. public void setFloorNum(String floorNum) {
  99. this.floorNum = floorNum;
  100. }
  101. public String getLayer() {
  102. return layer;
  103. }
  104. public void setLayer(String layer) {
  105. this.layer = layer;
  106. }
  107. public String getRoomNum() {
  108. return roomNum;
  109. }
  110. public void setRoomNum(String roomNum) {
  111. this.roomNum = roomNum;
  112. }
  113. public String getOwnerName() {
  114. return ownerName;
  115. }
  116. public void setOwnerName(String ownerName) {
  117. this.ownerName = ownerName;
  118. }
  119. public String getLogId() {
  120. return logId;
  121. }
  122. public void setLogId(String logId) {
  123. this.logId = logId;
  124. }
  125. public String getTel() {
  126. return tel;
  127. }
  128. public void setTel(String tel) {
  129. this.tel = tel;
  130. }
  131. public String getState() {
  132. return state;
  133. }
  134. public void setState(String state) {
  135. this.state = state;
  136. }
  137. public String getCommunityId() {
  138. return communityId;
  139. }
  140. public void setCommunityId(String communityId) {
  141. this.communityId = communityId;
  142. }
  143. public String getRoomRent() {
  144. return roomRent;
  145. }
  146. public void setRoomRent(String roomRent) {
  147. this.roomRent = roomRent;
  148. }
  149. public String getLayerCount() {
  150. return layerCount;
  151. }
  152. public void setLayerCount(String layerCount) {
  153. this.layerCount = layerCount;
  154. }
  155. public String getSex() {
  156. return sex;
  157. }
  158. public void setSex(String sex) {
  159. this.sex = sex;
  160. }
  161. public String getRoomSubType() {
  162. return roomSubType;
  163. }
  164. public void setRoomSubType(String roomSubType) {
  165. this.roomSubType = roomSubType;
  166. }
  167. public String getRoomArea() {
  168. return roomArea;
  169. }
  170. public void setRoomArea(String roomArea) {
  171. this.roomArea = roomArea;
  172. }
  173. public String getStatusCd() {
  174. return statusCd;
  175. }
  176. public void setStatusCd(String statusCd) {
  177. this.statusCd = statusCd;
  178. }
  179. public String getBuiltUpArea() {
  180. return builtUpArea;
  181. }
  182. public void setBuiltUpArea(String builtUpArea) {
  183. this.builtUpArea = builtUpArea;
  184. }
  185. public String getLeft() {
  186. return left;
  187. }
  188. public void setLeft(String left) {
  189. this.left = left;
  190. }
  191. public String getImportUserId() {
  192. return importUserId;
  193. }
  194. public void setImportUserId(String importUserId) {
  195. this.importUserId = importUserId;
  196. }
  197. public String getAge() {
  198. return age;
  199. }
  200. public void setAge(String age) {
  201. this.age = age;
  202. }
  203. }