order_type = 1
消费金额money
和order_type = 2
提现金额money
DROP TABLE IF EXISTS `store_money_record`;
CREATE TABLE `store_money_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_no` char(40) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT '0',
`money` decimal(10,2) DEFAULT '0.00',
`content` char(60) NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '0',
`order_id` int(11) DEFAULT '0',
`order_type` tinyint(1) DEFAULT '0',
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`delete_time` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `order_no` (`order_no`),
KEY `idx_delete_time` (`delete_time`),
KEY `idx_store_id` (`store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.