Skip to content

Commit

Permalink
增加了日期类型
Browse files Browse the repository at this point in the history
  • Loading branch information
devzwy committed Sep 8, 2023
1 parent 6c96da8 commit e267dde
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<dependency>
<groupId>io.github.devzwy</groupId>
<artifactId>mdhelper</artifactId>
<version>2.2.1</version>
<version>2.2.2</version>
</dependency>
```

- Gradle
```
implementation("io.github.devzwy:mdhelper:2.2.1")
implementation("io.github.devzwy:mdhelper:2.2.2")
```

## 开始使用
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions src/main/kotlin/io/github/devzwy/mdhelper/data/DataType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ enum class DataType(val value: Int) {
//多选
OPTION_ML(10),

//日期
DATE(15),

//日期时间
DATETIME(16),

//大写金额
AMOUNT_UP(25),

Expand Down

0 comments on commit e267dde

Please sign in to comment.