huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleFabulousDO.java
@@ -1,11 +1,11 @@
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
@@ -46,7 +46,7 @@
    private Long userId;
    /**
     * 有效状态(1.有效  2.取消)
     * 有效状态(1.有效 2.取消)
     */
    private Integer isEffective;
@@ -62,10 +62,17 @@
    @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;
    }
@@ -73,22 +80,9 @@
    /**
     * 点赞类型(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 +
                "}";
    }
}