| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @auther lyq |
| | |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 有效状态(1.有效 2.取消) |
| | | * 有效状态(1.有效 2.取消) |
| | | */ |
| | | private Integer isEffective; |
| | | |
| | |
| | | @TableField(fill = FieldFill.UPDATE) |
| | | private Date updateAt; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActNeighborCircleFabulousDO{" + "id=" + id + ", type=" + type + ", parentId=" + parentId |
| | | + ", userId=" + userId + ", isEffective=" + isEffective + ", createAt=" + createAt + ", updateAt=" |
| | | + updateAt + "}"; |
| | | } |
| | | |
| | | /** |
| | | * 有效状态(1.有效 2.取消) |
| | | * 有效状态(1.有效 2.取消) |
| | | */ |
| | | public interface isEffective{ |
| | | public interface isEffective { |
| | | int yes = 1; |
| | | int no = 2; |
| | | } |
| | |
| | | /** |
| | | * 点赞类型(1.邻里圈 2.评论 3.回复) |
| | | */ |
| | | public interface type{ |
| | | public interface type { |
| | | int llq = 1; |
| | | int pl = 2; |
| | | int hf = 3; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActNeighborCircleFabulousDO{" + |
| | | "id=" + id + |
| | | ", type=" + type + |
| | | ", parentId=" + parentId + |
| | | ", userId=" + userId + |
| | | ", isEffective=" + isEffective + |
| | | ", createAt=" + createAt + |
| | | ", updateAt=" + updateAt + |
| | | "}"; |
| | | } |
| | | } |