You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
631 B
8 lines
631 B
1 year ago
|
ALTER TABLE `sgc_yg`.`bs_sgc_sz_fzr`
|
||
|
ADD COLUMN `organization_name` varchar(255) NULL COMMENT '组织名称' AFTER `adcd`,
|
||
|
ADD COLUMN `charge_person_name` varchar(255) NULL COMMENT '负责人名称' AFTER `organization_name`,
|
||
|
ADD COLUMN `charge_person_phone` varchar(255) NULL COMMENT '负责人电话' AFTER `charge_person_name`,
|
||
|
ADD COLUMN `charge_person_duites` varchar(255) NULL COMMENT '负责人职务' AFTER `charge_person_phone`,
|
||
|
ADD COLUMN `charge_person_type` varchar(255) NULL COMMENT '负责人类型' AFTER `charge_person_duites`,
|
||
|
ADD COLUMN `member` varchar(255) NULL COMMENT '成员' AFTER `charge_person_type`;
|