MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
log_id | varchar(30) | 否 | id | 无索引 | ||
request_header | longtext | 是 | 请求头信息 | 无索引 | ||
response_header | longtext | 是 | 返回头信息 | 无索引 | ||
request_message | longtext | 是 | 请求报文 | 无索引 | ||
response_message | longtext | 是 | 返回报文 | 无索引 | ||
remark | varchar(200) | 是 | 备注 | 无索引 | ||
yesapi_micro_com_l_transaction_log_message_month | int(11) | 否 | 月份 | 无索引 | ||
create_time | timestamp | 0000-00-00 00:00:00 | 否 | 创建时间 | 无索引 | 0000-00-00 00:00:00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:物业综合管理-交易日志消息:https://open.yesapi.cn/tablelist/yesapi_micro_com_l_transaction_log_message.html
-- 数据库大全:物业综合管理-交易日志消息
-- 来源:YesApi.cn
CREATE TABLE `yesapi_micro_com_l_transaction_log_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`log_id` varchar(30) NOT NULL COMMENT 'id',
`request_header` longtext NOT NULL COMMENT '请求头信息',
`response_header` longtext NOT NULL COMMENT '返回头信息',
`request_message` longtext NOT NULL COMMENT '请求报文',
`response_message` longtext NOT NULL COMMENT '返回报文',
`remark` varchar(200) NOT NULL COMMENT '备注',
`yesapi_micro_com_l_transaction_log_message_month` int(11) NOT NULL COMMENT '月份',
`create_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '物业综合管理-交易日志消息';
复制后,到数据库执行,即可创建此数据库表。