MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
service_business_id | int(11) | 否 | id | 无索引 | ||
business_type_cd | varchar(12) | 是 | 唯一索引 | |||
invoke_type | varchar(4) | 否 | 调用类型,1 http-post(微服务内应用) 2 webservice 3 http-post(微服务之外应用) | 无索引 | ||
url | varchar(200) | 是 | 目标地址 | 无索引 | ||
message_topic | varchar(50) | 是 | 异步时的消息topic名称 | 无索引 | ||
timeout | int(11) | 60 | 否 | 超时时间 | 无索引 | 60 |
retry_count | int(11) | 3 | 否 | 重试次数 | 无索引 | 3 |
create_time | timestamp | 0000-00-00 00:00:00 | 否 | 创建时间 | 无索引 | 0000-00-00 00:00:00 |
status_cd | varchar(2) | 0 | 否 | 数据状态,详细参考c_status表,0在用,1失效 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:物业综合管理-微服务:https://open.yesapi.cn/tablelist/yesapi_micro_com_c_service_business.html
-- 数据库大全:物业综合管理-微服务
-- 来源:YesApi.cn
CREATE TABLE `yesapi_micro_com_c_service_business` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`service_business_id` int(11) NOT NULL COMMENT 'id',
`business_type_cd` varchar(12) NOT NULL COMMENT '',
`invoke_type` varchar(4) NOT NULL COMMENT '调用类型,1 http-post(微服务内应用) 2 webservice 3 http-post(微服务之外应用)',
`url` varchar(200) NOT NULL COMMENT '目标地址',
`message_topic` varchar(50) NOT NULL COMMENT '异步时的消息topic名称',
`timeout` int(11) NOT NULL DEFAULT '60' COMMENT '超时时间',
`retry_count` int(11) NOT NULL DEFAULT '3' COMMENT '重试次数',
`create_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '创建时间',
`status_cd` varchar(2) NOT NULL DEFAULT '0' COMMENT '数据状态,详细参考c_status表,0在用,1失效',
UNIQUE KEY `business_type_cd` (`business_type_cd`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '物业综合管理-微服务';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

