diff --git a/modules/cms/src/main/resources/config/beetl-cms.properties b/modules/cms/src/main/resources/config/beetl-cms.properties index e27fdd33..da983c62 100644 --- a/modules/cms/src/main/resources/config/beetl-cms.properties +++ b/modules/cms/src/main/resources/config/beetl-cms.properties @@ -12,10 +12,10 @@ IMPORT_PACKAGE_cms=\ #FNP.strutil = org.beetl.ext.fn.StringUtil ##内置的格式化函数 -#FT.dateFormat = org.beetl.ext.format.DateFormat +#FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat ##内置的默认格式化函数 -#FTC.java.util.Date = org.beetl.ext.format.DateFormat +#FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat ## 标签类 #TAG.include= org.beetl.ext.tag.IncludeTag diff --git a/modules/core/src/main/resources/config/beetl-core.properties b/modules/core/src/main/resources/config/beetl-core.properties index f54015ad..7731b75a 100644 --- a/modules/core/src/main/resources/config/beetl-core.properties +++ b/modules/core/src/main/resources/config/beetl-core.properties @@ -117,15 +117,15 @@ FNP.array = org.beetl.ext.fn.ArrayUtil FNP.dict = com.jeesite.common.beetl.ext.fn.DictUtil ##内置的格式化函数 -FT.dateFormat = org.beetl.ext.format.DateFormat +FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat FT.numberFormat = com.jeesite.common.beetl.ext.format.NumberFormat FT.xss = com.jeesite.common.beetl.ext.format.XssFormat ##内置的默认格式化函数 -FTC.java.util.Date = org.beetl.ext.format.DateFormat -FTC.java.sql.Date = org.beetl.ext.format.DateFormat -FTC.java.sql.Time = org.beetl.ext.format.DateFormat -FTC.java.sql.Timestamp = org.beetl.ext.format.DateFormat +FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Date = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Time = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Timestamp = com.jeesite.common.beetl.ext.format.DateFormat FTC.java.lang.Short = com.jeesite.common.beetl.ext.format.NumberFormat FTC.java.lang.Long = com.jeesite.common.beetl.ext.format.NumberFormat FTC.java.lang.Integer = com.jeesite.common.beetl.ext.format.NumberFormat diff --git a/web-ai/src/main/resources/config/beetl.properties b/web-ai/src/main/resources/config/beetl.properties index 5a9fef83..701ad98f 100644 --- a/web-ai/src/main/resources/config/beetl.properties +++ b/web-ai/src/main/resources/config/beetl.properties @@ -12,10 +12,10 @@ #FNP.strutil = org.beetl.ext.fn.StringUtil ##内置的格式化函数 -#FT.dateFormat = org.beetl.ext.format.DateFormat +#FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat ##内置的默认格式化函数 -#FTC.java.util.Date = org.beetl.ext.format.DateFormat +#FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat ## 标签类 #TAG.include= org.beetl.ext.tag.IncludeTag diff --git a/web-api/src/main/resources/config/beetl.properties b/web-api/src/main/resources/config/beetl.properties index 5a9fef83..701ad98f 100644 --- a/web-api/src/main/resources/config/beetl.properties +++ b/web-api/src/main/resources/config/beetl.properties @@ -12,10 +12,10 @@ #FNP.strutil = org.beetl.ext.fn.StringUtil ##内置的格式化函数 -#FT.dateFormat = org.beetl.ext.format.DateFormat +#FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat ##内置的默认格式化函数 -#FTC.java.util.Date = org.beetl.ext.format.DateFormat +#FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat ## 标签类 #TAG.include= org.beetl.ext.tag.IncludeTag diff --git a/web-fast/src/main/resources/config/beetl.properties b/web-fast/src/main/resources/config/beetl.properties index 5a9fef83..701ad98f 100644 --- a/web-fast/src/main/resources/config/beetl.properties +++ b/web-fast/src/main/resources/config/beetl.properties @@ -12,10 +12,10 @@ #FNP.strutil = org.beetl.ext.fn.StringUtil ##内置的格式化函数 -#FT.dateFormat = org.beetl.ext.format.DateFormat +#FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat ##内置的默认格式化函数 -#FTC.java.util.Date = org.beetl.ext.format.DateFormat +#FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat ## 标签类 #TAG.include= org.beetl.ext.tag.IncludeTag diff --git a/web-mini/src/main/resources/config/beetl-core.properties b/web-mini/src/main/resources/config/beetl-core.properties index 9ac4bd37..d2b2e21e 100644 --- a/web-mini/src/main/resources/config/beetl-core.properties +++ b/web-mini/src/main/resources/config/beetl-core.properties @@ -117,15 +117,15 @@ FNP.array = org.beetl.ext.fn.ArrayUtil FNP.dict = com.jeesite.common.beetl.ext.fn.DictUtil ##内置的格式化函数 -FT.dateFormat = org.beetl.ext.format.DateFormat +FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat FT.numberFormat = com.jeesite.common.beetl.ext.format.NumberFormat FT.xss = com.jeesite.common.beetl.ext.format.XssFormat ##内置的默认格式化函数 -FTC.java.util.Date = org.beetl.ext.format.DateFormat -FTC.java.sql.Date = org.beetl.ext.format.DateFormat -FTC.java.sql.Time = org.beetl.ext.format.DateFormat -FTC.java.sql.Timestamp = org.beetl.ext.format.DateFormat +FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Date = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Time = com.jeesite.common.beetl.ext.format.DateFormat +FTC.java.sql.Timestamp = com.jeesite.common.beetl.ext.format.DateFormat FTC.java.lang.Short = com.jeesite.common.beetl.ext.format.NumberFormat FTC.java.lang.Long = com.jeesite.common.beetl.ext.format.NumberFormat FTC.java.lang.Integer = com.jeesite.common.beetl.ext.format.NumberFormat diff --git a/web/src/main/resources/config/beetl.properties b/web/src/main/resources/config/beetl.properties index 5a9fef83..701ad98f 100644 --- a/web/src/main/resources/config/beetl.properties +++ b/web/src/main/resources/config/beetl.properties @@ -12,10 +12,10 @@ #FNP.strutil = org.beetl.ext.fn.StringUtil ##内置的格式化函数 -#FT.dateFormat = org.beetl.ext.format.DateFormat +#FT.dateFormat = com.jeesite.common.beetl.ext.format.DateFormat ##内置的默认格式化函数 -#FTC.java.util.Date = org.beetl.ext.format.DateFormat +#FTC.java.util.Date = com.jeesite.common.beetl.ext.format.DateFormat ## 标签类 #TAG.include= org.beetl.ext.tag.IncludeTag