From d319a8422522717881b8ea83a19e62a3a201aef8 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Mon, 26 Aug 2024 16:44:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AD=97=E4=BD=93=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dataease/font/dao/auto/entity/CoreFont.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/core/core-backend/src/main/java/io/dataease/font/dao/auto/entity/CoreFont.java b/core/core-backend/src/main/java/io/dataease/font/dao/auto/entity/CoreFont.java index e8c9f41095..8ee19df45f 100644 --- a/core/core-backend/src/main/java/io/dataease/font/dao/auto/entity/CoreFont.java +++ b/core/core-backend/src/main/java/io/dataease/font/dao/auto/entity/CoreFont.java @@ -9,7 +9,7 @@ import java.io.Serializable; *

* * @author fit2cloud - * @since 2024-08-23 + * @since 2024-08-26 */ @TableName("core_font") public class CoreFont implements Serializable { @@ -41,6 +41,11 @@ public class CoreFont implements Serializable { */ private Boolean isDefault; + /** + * 更新时间 + */ + private Long updateTime; + /** * 是否内置 */ @@ -86,6 +91,14 @@ public class CoreFont implements Serializable { this.isDefault = isDefault; } + public Long getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + public Boolean getIsBuiltin() { return isBuiltin; } @@ -102,6 +115,7 @@ public class CoreFont implements Serializable { ", fileName = " + fileName + ", fileTransName = " + fileTransName + ", isDefault = " + isDefault + + ", updateTime = " + updateTime + ", isBuiltin = " + isBuiltin + "}"; }