feat:添加OA系统对接相关代码

This commit is contained in:
aguanleishen
2026-07-22 17:04:56 +08:00
parent b259f94d4b
commit 9894ac7a34
8 changed files with 122 additions and 0 deletions
+6
View File
@@ -82,6 +82,12 @@
<artifactId>blade-core-auto</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,9 @@
package org.springblade.core.tool.support;
/**
* 不拦截标识接口
* @author bfhuange
* @date 2024/9/20
*/
public interface NoErrorFallback {
}
@@ -25,6 +25,9 @@ public class DateUtil {
public static final String PATTERN_DATETIME_MINI = "yyyyMMddHHmmss";
public static final String PATTERN_DATE = "yyyy-MM-dd";
public static final String PATTERN_TIME = "HH:mm:ss";
public static final String PATTERN_TIME_MINI = "yyyy-MM-dd HH:mm";
/**
* 老 date 格式化
*/