MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
deduction_per_amount | int(11) | 是 | 每一元需要抵扣的积分数量 | 无索引 | ||
max_percent_per_order | int(11) | 是 | 每笔订单最高抵用百分比 | 无索引 | ||
use_unit | int(11) | 是 | 每次使用积分最小单位100 | 无索引 | ||
coupon_status | int(1) | 是 | 是否可以和优惠券同用;0->不可以;1->可以 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-积分消费设置:https://open.yesapi.cn/tablelist/yesapi_mall_ums_integration_consume_setting.html
-- 数据库大全:电商-积分消费设置
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_ums_integration_consume_setting` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`deduction_per_amount` int(11) NULL COMMENT '每一元需要抵扣的积分数量',
`max_percent_per_order` int(11) NULL COMMENT '每笔订单最高抵用百分比',
`use_unit` int(11) NULL COMMENT '每次使用积分最小单位100',
`coupon_status` int(1) NULL COMMENT '是否可以和优惠券同用;0->不可以;1->可以',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-积分消费设置';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航