From 5ca3354e004dd2b2f675478ddddf0369656b12ed Mon Sep 17 00:00:00 2001 From: zhouhao Date: Mon, 21 Aug 2017 14:57:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=B2=BE=E5=BA=A6=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/hsweb-starter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hsweb-system/hsweb-system-file/hsweb-system-file-starter/src/main/resources/hsweb-starter.js b/hsweb-system/hsweb-system-file/hsweb-system-file-starter/src/main/resources/hsweb-starter.js index dcbc76556..a1f43d441 100644 --- a/hsweb-system/hsweb-system-file/hsweb-system-file-starter/src/main/resources/hsweb-starter.js +++ b/hsweb-system/hsweb-system-file/hsweb-system-file-starter/src/main/resources/hsweb-starter.js @@ -29,7 +29,7 @@ function install(context) { .addColumn().name("size").alias("size").comment("文件大小").jdbcType(java.sql.JDBCType.DECIMAL).length(32, 0).commit() .addColumn().name("status").alias("status").comment("状态").jdbcType(java.sql.JDBCType.DECIMAL).length(4, 0).commit() .addColumn().name("classified").alias("classified").comment("分类").jdbcType(java.sql.JDBCType.VARCHAR).length(32).commit() - .addColumn().name("create_time").alias("create_time").comment("创建时间").jdbcType(java.sql.JDBCType.NUMERIC).length(32).commit() + .addColumn().name("create_time").alias("create_time").comment("创建时间").jdbcType(java.sql.JDBCType.NUMERIC).length(32,0).commit() .addColumn().name("creator_id").alias("creatorId").comment("创建人").jdbcType(java.sql.JDBCType.VARCHAR).length(256).commit() .comment("文件信息").commit(); }