数字督察一体化平台
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.
 
 

9 lines
360 B

CREATE TABLE `sup_dict_handle_result_maping` (
`id` int NOT NULL AUTO_INCREMENT,
`external_name` varchar(255) DEFAULT NULL,
`internal_name` varchar(255) NOT NULL,
`internal_id` varchar(40) NOT NULL,
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1;