From c260a8280c983e19ca22412b52e18e943b698e48 Mon Sep 17 00:00:00 2001 From: coolsoul <452204397@qq.com> Date: Thu, 16 Sep 2021 06:41:27 +0000 Subject: [PATCH] =?UTF-8?q?update=2001-hello-world/README.md.=20=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=E5=BB=BA=E8=A1=A8=E8=AF=AD=E5=8F=A5=E8=B7=9F=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E4=BF=9D=E6=8C=81=E4=B8=80=E8=87=B4=EF=BC=8C=E5=90=A6?= =?UTF-8?q?=E5=88=99=E6=8A=A5=E9=94=99=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 01-hello-world/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01-hello-world/README.md b/01-hello-world/README.md index d3a6005..8bc2e5a 100644 --- a/01-hello-world/README.md +++ b/01-hello-world/README.md @@ -31,7 +31,7 @@ create table hello_world id bigint unsigned auto_increment primary key, say_hello varchar(100) null, your_name varchar(100) null, - gmt_create datetime DEFAULT NULL COMMENT '创建时间', + gmt_created datetime DEFAULT NULL COMMENT '创建时间', gmt_modified datetime DEFAULT NULL COMMENT '更新时间', is_deleted tinyint(2) DEFAULT 0 COMMENT '是否逻辑删除' ) ENGINE = InnoDB @@ -54,7 +54,7 @@ public class HelloWorldEntity implements IEntity { private String yourName; - private Date gmtCreate; + private Date gmtCreated; private Date gmtModified; -- Gitee