From 04656ebd6d0000dd4653eaf000bf73cb2bd4f521 Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期四, 17 十一月 2022 11:14:14 +0800 Subject: [PATCH] 数据库修改 --- ycl-platform/src/main/java/com/ycl/entity/NewsColumn.java | 94 +++++++++++++++++++++++----------------------- 1 files changed, 47 insertions(+), 47 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/entity/NewsColumn.java b/ycl-platform/src/main/java/com/ycl/entity/NewsColumn.java index cb8c678..66f766f 100644 --- a/ycl-platform/src/main/java/com/ycl/entity/NewsColumn.java +++ b/ycl-platform/src/main/java/com/ycl/entity/NewsColumn.java @@ -1,47 +1,47 @@ -package com.ycl.entity; - - -import com.baomidou.mybatisplus.extension.activerecord.Model; -import java.io.Serializable; - -/** - * 鏍忕洰琛�(NewsColumn)琛ㄥ疄浣撶被 - * - * @author makejava - * @since 2022-11-16 16:52:30 - */ -@SuppressWarnings("serial") -public class NewsColumn extends Model<NewsColumn> { - //id - private Integer id; - //鏍忕洰鍚嶇О - private String name; - - - public Object getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - /** - * 鑾峰彇涓婚敭鍊� - * - * @return 涓婚敭鍊� - */ - @Override - protected Serializable pkVal() { - return this.id; - } - } - +package com.ycl.entity; + + +import com.baomidou.mybatisplus.extension.activerecord.Model; +import java.io.Serializable; + +/** + * 鏍忕洰琛�(NewsColumn)琛ㄥ疄浣撶被 + * + * @author makejava + * @since 2022-11-17 11:12:41 + */ +@SuppressWarnings("serial") +public class NewsColumn extends Model<NewsColumn> { + //id + private Object id; + //鏍忕洰鍚嶇О + private String name; + + + public Object getId() { + return id; + } + + public void setId(Object id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + /** + * 鑾峰彇涓婚敭鍊� + * + * @return 涓婚敭鍊� + */ + @Override + protected Serializable pkVal() { + return this.id; + } + } + -- Gitblit v1.8.0