TpSocialView.java 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.huiju.estateagents.property.model;
  2. import java.util.Date;
  3. public class TpSocialView {
  4. private Integer id;
  5. private Integer communityId;
  6. private Integer uuid;
  7. private String socialType;
  8. private Integer taUserId;
  9. private String remark;
  10. private Date createDate;
  11. public Integer getId() {
  12. return id;
  13. }
  14. public void setId(Integer id) {
  15. this.id = id;
  16. }
  17. public Integer getCommunityId() {
  18. return communityId;
  19. }
  20. public void setCommunityId(Integer communityId) {
  21. this.communityId = communityId;
  22. }
  23. public Integer getUuid() {
  24. return uuid;
  25. }
  26. public void setUuid(Integer uuid) {
  27. this.uuid = uuid;
  28. }
  29. public String getSocialType() {
  30. return socialType;
  31. }
  32. public void setSocialType(String socialType) {
  33. this.socialType = socialType == null ? null : socialType.trim();
  34. }
  35. public Integer getTaUserId() {
  36. return taUserId;
  37. }
  38. public void setTaUserId(Integer taUserId) {
  39. this.taUserId = taUserId;
  40. }
  41. public String getRemark() {
  42. return remark;
  43. }
  44. public void setRemark(String remark) {
  45. this.remark = remark == null ? null : remark.trim();
  46. }
  47. public Date getCreateDate() {
  48. return createDate;
  49. }
  50. public void setCreateDate(Date createDate) {
  51. this.createDate = createDate;
  52. }
  53. }