MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_mall_pms_feight_template_name | varchar(64) | 是 | 无索引 | |||
charge_type | int(1) | 是 | 计费类型:0->按重量;1->按件数 | 无索引 | ||
first_weight | decimal(10,2) | 是 | 首重kg | 无索引 | ||
first_fee | decimal(10,2) | 是 | 首费(元) | 无索引 | ||
continue_weight | decimal(10,2) | 是 | 无索引 | |||
continme_fee | decimal(10,2) | 是 | 无索引 | |||
dest | varchar(255) | 是 | 目的地(省、市) | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-运费模版:https://open.yesapi.cn/tablelist/yesapi_mall_pms_feight_template.html
-- 数据库大全:电商-运费模版
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_pms_feight_template` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_mall_pms_feight_template_name` varchar(64) NULL COMMENT '',
`charge_type` int(1) NULL COMMENT '计费类型:0->按重量;1->按件数',
`first_weight` decimal(10,2) NULL COMMENT '首重kg',
`first_fee` decimal(10,2) NULL COMMENT '首费(元)',
`continue_weight` decimal(10,2) NULL COMMENT '',
`continme_fee` decimal(10,2) NULL COMMENT '',
`dest` varchar(255) NULL COMMENT '目的地(省、市)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-运费模版';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航