MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
pay_mch_id | int(10) | 是 | 无索引 | |||
pay_vendor_id | int(10) | 是 | 无索引 | |||
amount | decimal(10,0) | 否 | 无索引 | |||
yesapi_zheng_pay_out_order_status | tinyint(4) | 否 | 无索引 | |||
ctime | bigint(20) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:zheng敏捷开发-支出订单表:https://open.yesapi.cn/tablelist/yesapi_zheng_pay_out_order.html
-- 数据库大全:zheng敏捷开发-支出订单表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zheng_pay_out_order` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pay_mch_id` int(10) NOT NULL COMMENT '',
`pay_vendor_id` int(10) NOT NULL COMMENT '',
`amount` decimal(10,0) NOT NULL COMMENT '',
`yesapi_zheng_pay_out_order_status` tinyint(4) NOT NULL COMMENT '',
`ctime` bigint(20) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-支出订单表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 zheng敏捷开发-支付中心商户管理表
MySQL数据库设计 zheng敏捷开发-商户支持支付类型表
MySQL数据库设计 zheng敏捷开发-马甲支付参数配置表