|
@@ -0,0 +1,126 @@
|
|
|
+package com.sf.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 新闻信息
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author baomidou
|
|
|
+ * @since 2024-06-01
|
|
|
+ */
|
|
|
+@TableName("news_info")
|
|
|
+public class NewsInfo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 类别ID
|
|
|
+ */
|
|
|
+ private Long categoryId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 类别名
|
|
|
+ */
|
|
|
+ private String categoryName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新闻来源
|
|
|
+ */
|
|
|
+ private String sourceName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新闻标题
|
|
|
+ */
|
|
|
+ private String title;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCategoryId() {
|
|
|
+ return categoryId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCategoryId(Long categoryId) {
|
|
|
+ this.categoryId = categoryId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCategoryName() {
|
|
|
+ return categoryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCategoryName(String categoryName) {
|
|
|
+ this.categoryName = categoryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSourceName() {
|
|
|
+ return sourceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSourceName(String sourceName) {
|
|
|
+ this.sourceName = sourceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitle() {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title) {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(LocalDateTime createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(LocalDateTime updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "NewsInfo{" +
|
|
|
+ "id = " + id +
|
|
|
+ ", categoryId = " + categoryId +
|
|
|
+ ", categoryName = " + categoryName +
|
|
|
+ ", sourceName = " + sourceName +
|
|
|
+ ", title = " + title +
|
|
|
+ ", createTime = " + createTime +
|
|
|
+ ", updateTime = " + updateTime +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|