Browse Source

设计产品规划部分的新表,支持可扩展的产品属性表

master
Claude Lee 1 month ago
parent
commit
9a0a52b9e0
  1. 2
      sql/产品规划.sql

2
sql/产品规划.sql

@ -125,6 +125,7 @@ create table dhc_product_property_table ( @@ -125,6 +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',
create_by varchar(64) default '' comment '创建者',
create_time datetime comment '创建时间',
update_by varchar(64) default '' comment '更新者',
@ -141,6 +142,7 @@ create table dhc_product_property_table_detail ( @@ -141,6 +142,7 @@ create table dhc_product_property_table_detail (
product_property_table_detail_id bigint(20) not null auto_increment primary key comment '区域id',
revision bigint(20) not null comment '版本号',
group_name varchar(100) default '' comment '分组名称',
property_index int(11) not null comment '属性排序',
property_name varchar(64) default '' comment '显示名称',
property_type varchar(32) default '' comment '属性类型(INT,TEXT,ENUM,DATE)',
property_dict_code varchar(32) default '' comment '属性关联数据字典CODE',

Loading…
Cancel
Save