优化商品的多属性功能,编辑的页面也可以操作多属性

This commit is contained in:
jishenghua
2025-04-09 23:59:40 +08:00
parent 9c6eb10108
commit 7094e2f511
9 changed files with 269 additions and 36 deletions

View File

@@ -1650,4 +1650,11 @@ alter table jsh_material_property add tenant_id bigint(20) DEFAULT NULL COMMENT
-- by jishenghua
-- 给jsh_account_head表的文件字段增加长度
-- --------------------------------------------------------
alter table jsh_account_head change file_name file_name varchar(1000) DEFAULT NULL COMMENT '附件名称';
alter table jsh_account_head change file_name file_name varchar(1000) DEFAULT NULL COMMENT '附件名称';
-- --------------------------------------------------------
-- 时间 2025年4月9日
-- by jishenghua
-- 给商品表增加多属性字段,里面存多属性的数组
-- --------------------------------------------------------
alter table jsh_material add attribute varchar(1000) DEFAULT NULL COMMENT '属性信息' after position;