From c435158ed1ff587939314e84347ee6e38e8f25ec Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期一, 21 十一月 2022 13:49:59 +0800 Subject: [PATCH] 接口调整及文件上传接口 --- ycl-platform/src/main/java/com/ycl/entity/NewsChannelColumn.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/entity/NewsChannelColumn.java b/ycl-platform/src/main/java/com/ycl/entity/NewsChannelColumn.java index 52d1236..f4d926f 100644 --- a/ycl-platform/src/main/java/com/ycl/entity/NewsChannelColumn.java +++ b/ycl-platform/src/main/java/com/ycl/entity/NewsChannelColumn.java @@ -2,6 +2,9 @@ import com.baomidou.mybatisplus.extension.activerecord.Model; +import lombok.AllArgsConstructor; +import lombok.Builder; + import java.io.Serializable; /** @@ -11,6 +14,8 @@ * @since 2022-11-17 11:38:27 */ @SuppressWarnings("serial") +@Builder +@AllArgsConstructor public class NewsChannelColumn extends Model<NewsChannelColumn> { private Integer id; @@ -18,7 +23,6 @@ private Integer channelId; //鏍忕洰id private Integer columnId; - public Integer getId() { return id; -- Gitblit v1.8.0