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

13 lines
655 B

CREATE TABLE `risk_score_rule` (
`id` int NOT NULL AUTO_INCREMENT,
`pid` int DEFAULT NULL,
`risk_name` varchar(255) COMMENT '风险因素',
`score` varchar(255) COMMENT '分值',
`rule_desc` text COLLATE utf8mb4_general_ci COMMENT '规则描述',
`weight` int DEFAULT NULL COMMENT '权重',
`status` tinyint DEFAULT NULL COMMENT '状态',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`sort_id` int DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 COMMENT='个人极端赋分规则';