From e267dde19dd46204147d6ef6f2504f1909de58f4 Mon Sep 17 00:00:00 2001 From: devzwy Date: Fri, 8 Sep 2023 13:37:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- build.gradle.kts | 2 +- src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt | 6 ++++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e1f06fa..9082e66 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ io.github.devzwy mdhelper - 2.2.1 + 2.2.2 ``` - Gradle ``` -implementation("io.github.devzwy:mdhelper:2.2.1") +implementation("io.github.devzwy:mdhelper:2.2.2") ``` ## 开始使用 diff --git a/build.gradle.kts b/build.gradle.kts index ca0b540..6c77ebf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "io.github.devzwy" -version = "2.2.1" +version = "2.2.2" val sourceJar by tasks.registering(Jar::class) { from(sourceSets["main"].allSource) diff --git a/src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt b/src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt index 2e34505..c363df0 100644 --- a/src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt +++ b/src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt @@ -21,6 +21,12 @@ enum class DataType(val value: Int) { //多选 OPTION_ML(10), + //日期 + DATE(15), + + //日期时间 + DATETIME(16), + //大写金额 AMOUNT_UP(25),