123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.huiju.estateagents.property.model;
-
- import java.util.Date;
-
- public class TpSocialView {
- private Integer id;
-
- private Integer communityId;
-
- private Integer uuid;
-
- private String socialType;
-
- private Integer taUserId;
-
- private String remark;
-
- private Date createDate;
-
- public Integer getId() {
- return id;
- }
-
- public void setId(Integer id) {
- this.id = id;
- }
-
- public Integer getCommunityId() {
- return communityId;
- }
-
- public void setCommunityId(Integer communityId) {
- this.communityId = communityId;
- }
-
- public Integer getUuid() {
- return uuid;
- }
-
- public void setUuid(Integer uuid) {
- this.uuid = uuid;
- }
-
- public String getSocialType() {
- return socialType;
- }
-
- public void setSocialType(String socialType) {
- this.socialType = socialType == null ? null : socialType.trim();
- }
-
- public Integer getTaUserId() {
- return taUserId;
- }
-
- public void setTaUserId(Integer taUserId) {
- this.taUserId = taUserId;
- }
-
- public String getRemark() {
- return remark;
- }
-
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
-
- public Date getCreateDate() {
- return createDate;
- }
-
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- }
|