create_ufutx_s2_orgstruct_tag

This commit is contained in:
tian 2025-12-30 14:17:19 +08:00
parent accf8b15e1
commit 4848313893

View File

@ -0,0 +1 @@
CREATE TABLE `health`.`ufutx_s2_orgstruct_tag` ( `id` INT NOT NULL AUTO_INCREMENT , `name` VARCHAR(128) NOT NULL COMMENT '标签名' , `parent_tag_id` INT NOT NULL DEFAULT '0' COMMENT '父级标签id, 0则为无父级' , `created_at` TIMESTAMP NULL DEFAULT NULL , `updated_at` TIMESTAMP NULL DEFAULT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB COMMENT = '组织架构和标签表';