kimi
2020-11-27 75c32d6d697a550400d0b4eec95b8570d83b726f
src/main/java/com/highdatas/srs/entity/Topic.java
@@ -22,18 +22,46 @@
    private String id;
    private String title;
    private String desp;
    @TableField("user_id")
    private String userId;
    @TableField("title_status")
    private Boolean titleStatus;
    @TableField("link_id")
    private String linkId;
    @TableField("title_id")
    private String titleId;
    private String attachment;
    private Boolean examine;
    private transient TitleService titleService;
    public Boolean getTitleStatus() {
        return titleStatus;
    }
    public Topic setTitleStatus(boolean titleStatus) {
        this.titleStatus = titleStatus;
        return this;
    }
    public TitleService getTitleService() {
        return titleService;
    }
    public void setTitleService(TitleService titleService) {
        this.titleService = titleService;
    }
    public String getTitleId() {
        return titleId;
    }
    public Topic setTitleId(String titleId) {
        this.titleId = titleId;
        return this;
    }
    @TableField("create_time")
    private Date createTime;
@@ -65,14 +93,7 @@
        return this;
    }
    public String getTitle() {
        return title;
    }
    public Topic setTitle(String title) {
        this.title = title;
        return this;
    }
    public String getId() {
        return id;
@@ -83,14 +104,7 @@
        return this;
    }
    public String getDesp() {
        return desp;
    }
    public Topic setDesp(String desp) {
        this.desp = desp;
        return this;
    }
    public String getUserId() {
        return userId;
    }
@@ -117,9 +131,7 @@
    public String toString() {
        return "Topic{" +
        "id=" + id +
        ", title=" + title +
        ", createTime=" + createTime +
        ", desp=" + desp +
        ", userId=" + userId +
        ", attachment=" + attachment +
        "}";