| | |
| | | |
| | | 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; |
| | |
| | | return this; |
| | | } |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | | } |
| | | |
| | | public Topic setTitle(String title) { |
| | | this.title = title; |
| | | return this; |
| | | } |
| | | |
| | | public String getId() { |
| | | return id; |
| | |
| | | return this; |
| | | } |
| | | |
| | | public String getDesp() { |
| | | return desp; |
| | | } |
| | | |
| | | public Topic setDesp(String desp) { |
| | | this.desp = desp; |
| | | return this; |
| | | } |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | |
| | | public String toString() { |
| | | return "Topic{" + |
| | | "id=" + id + |
| | | ", title=" + title + |
| | | ", createTime=" + createTime + |
| | | ", desp=" + desp + |
| | | ", userId=" + userId + |
| | | ", attachment=" + attachment + |
| | | "}"; |