From a549bea0df4727ebe5bec3e5fa1ee0c9412f0ef9 Mon Sep 17 00:00:00 2001 From: Claude Lee Date: Mon, 14 Oct 2024 16:12:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E4=BA=A7=E5=93=81=E8=A7=84?= =?UTF-8?q?=E5=88=92=E9=83=A8=E5=88=86=E7=9A=84=E6=96=B0=E8=A1=A8=EF=BC=8C?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=8F=AF=E6=89=A9=E5=B1=95=E7=9A=84=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E5=B1=9E=E6=80=A7=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/产品规划.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/产品规划.sql b/sql/产品规划.sql index 9bf70a3..22ade1c 100644 --- a/sql/产品规划.sql +++ b/sql/产品规划.sql @@ -73,7 +73,7 @@ create table dhc_product_property_table_rel ( create_time datetime comment '创建时间', update_by varchar(64) default '' comment '更新者', update_time datetime comment '更新时间' -) engine=innodb auto_increment=1 comment = '产品属性表'; +) engine=innodb auto_increment=1 comment = '产品属性模板关联表'; -- ---------------------------- @@ -88,7 +88,7 @@ create table dhc_product_property_value ( property_type varchar(32) default '' comment '属性类型(INT,TEXT,ENUM,DATE)', property_dict_code varchar(32) default '' comment '属性关联数据字典CODE', field_name varchar(32) default '' comment '属性名称(字段英文标识符)', - property_value text default '' comment '属性值(以字符串形式存储)', + property_value text comment '属性值(以字符串形式存储)', property_value_name varchar(200) default '' comment '属性显示名称(仅数据字典有效)', create_by varchar(64) default '' comment '创建者', create_time datetime comment '创建时间', @@ -125,7 +125,7 @@ create table dhc_product_property_table ( product_property_table_id bigint(20) not null auto_increment primary key comment '区域id', display_name varchar(64) default '' comment '显示名称', head_revision bigint(20) not null comment '当前版本', - group_json text default '' comment '分组定义JSON', + group_json text comment '分组定义JSON', create_by varchar(64) default '' comment '创建者', create_time datetime comment '创建时间', update_by varchar(64) default '' comment '更新者',