From 04a66f6b3a0ad62786df77cab707e4f52bc182dc Mon Sep 17 00:00:00 2001
From: intellijboy <1099501218@qq.com>
Date: Thu, 5 Jan 2023 01:04:35 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E5=8D=87=E7=BA=A7=20fastjson2=20=E7=89=88?=
=?UTF-8?q?=E6=9C=AC=EF=BC=8C=E4=BF=AE=E5=A4=8D=20maven=20=E4=BE=9D?=
=?UTF-8?q?=E8=B5=96=E8=A7=A3=E6=9E=90=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
server/pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/pom.xml b/server/pom.xml
index 3f6b82bf..84f27b2e 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -33,7 +33,7 @@
1.4.5
1.18.24
- 2.0.16
+ 2.0.22
3.12.0
2.11.0
2.11.1
@@ -258,4 +258,4 @@
-
\ No newline at end of file
+
--
Gitee
From 60929e4bd67d0d56cfd83c99ee0e618aabe178df Mon Sep 17 00:00:00 2001
From: intellijboy <1099501218@qq.com>
Date: Thu, 5 Jan 2023 01:08:17 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=AB=98=E4=BA=8E=20mysq?=
=?UTF-8?q?l8.0=20=E7=89=88=E6=9C=AC=20groups=20=E4=B8=BA=E5=85=B3?=
=?UTF-8?q?=E9=94=AE=E8=AF=8D=E5=AF=BC=E8=87=B4=E5=AE=9A=E6=97=B6=E4=BB=BB?=
=?UTF-8?q?=E5=8A=A1=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98=EF=BC=8C=E5=85=B3?=
=?UTF-8?q?=E8=81=94issue:=20https://gitee.com/likeadmin/likeadmin=5Fjava/?=
=?UTF-8?q?issues/I67C1K?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/main/java/com/mdd/common/entity/Crontab.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/server/like-common/src/main/java/com/mdd/common/entity/Crontab.java b/server/like-common/src/main/java/com/mdd/common/entity/Crontab.java
index 6b111bf0..1780a867 100644
--- a/server/like-common/src/main/java/com/mdd/common/entity/Crontab.java
+++ b/server/like-common/src/main/java/com/mdd/common/entity/Crontab.java
@@ -1,6 +1,7 @@
package com.mdd.common.entity;
import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@@ -17,6 +18,7 @@ public class Crontab implements Serializable {
@TableId(value="id", type= IdType.AUTO)
private Integer id; // 主键
private String name; // 任务名称
+ @TableField("`groups`")
private String groups; // 任务分组
private String command; // 执行命令
private String rules; // 执行规则
--
Gitee