mysql通过子查询进行邀请数据的展示

mysql通过子查询进行邀请数据的展示


sql查询语句:

邀请人气榜sql
SELECT eu.user_id,eu.parent_id,eu.user_name,COUNT(1) as num,(SELECT ec.user_name FROM ecs_users ec where ec.user_id=eu.parent_id) as name from ecs_users eu WHERE eu.parent_id!=0  GROUP BY eu.parent_id ORDER BY num DESC LIMIT 0,10
邀请豪气榜sql
select SUM(h.total_fee) as total,h.name from (SELECT eu.user_id,eu.parent_id,eu.user_name,sum((o.goods_amount + o.shipping_fee + o.insure_fee + o.pay_fee + o.pack_fee + o.card_fee + o.tax - o.discount))AS total_fee,(SELECT ec.user_name FROM ecs_users ec where ec.user_id=eu.parent_id) as name from ecs_users eu,ecs_order_info o WHERE eu.parent_id!=0 and o.user_id=eu.user_id GROUP BY eu.user_id ORDER BY total_fee desc) as h group by h.parent_id  HAVING SUM(h.total_fee)>0 ORDER BY total_fee desc  LIMIT 0,10;

数据库结构以及数据

ecs_users表结构:

/*
Navicat MySQL Data Transfer

Source Server         : PHP
Source Server Version : 50540
Source Host           : localhost:3306
Source Database       : test

Target Server Type    : MYSQL
Target Server Version : 50540
File Encoding         : 65001

Date: 2018-03-27 14:39:04
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for ecs_users
-- ----------------------------
DROP TABLE IF EXISTS `ecs_users`;
CREATE TABLE `ecs_users` (
  `user_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(60) NOT NULL DEFAULT '',
  `user_name` varchar(60) NOT NULL DEFAULT '',
  `password` varchar(32) NOT NULL DEFAULT '',
  `question` varchar(255) NOT NULL DEFAULT '',
  `answer` varchar(255) NOT NULL DEFAULT '',
  `sex` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `birthday` date NOT NULL DEFAULT '0000-00-00',
  `user_money` decimal(10,2) NOT NULL DEFAULT '0.00',
  `frozen_money` decimal(10,2) NOT NULL DEFAULT '0.00',
  `pay_points` int(10) unsigned NOT NULL DEFAULT '0',
  `rank_points` int(10) unsigned NOT NULL DEFAULT '0',
  `address_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `reg_time` int(10) unsigned NOT NULL DEFAULT '0',
  `last_login` int(11) unsigned NOT NULL DEFAULT '0',
  `last_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_ip` varchar(15) NOT NULL DEFAULT '',
  `visit_count` smallint(5) unsigned NOT NULL DEFAULT '0',
  `user_rank` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `is_special` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `ec_salt` varchar(10) DEFAULT NULL,
  `salt` varchar(10) NOT NULL DEFAULT '0',
  `parent_id` mediumint(9) NOT NULL DEFAULT '0',
  `flag` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `alias` varchar(60) NOT NULL,
  `msn` varchar(60) NOT NULL,
  `qq` varchar(20) NOT NULL,
  `office_phone` varchar(20) NOT NULL,
  `home_phone` varchar(20) NOT NULL,
  `mobile_phone` varchar(20) NOT NULL,
  `is_validated` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `credit_line` decimal(10,2) unsigned NOT NULL,
  `passwd_question` varchar(50) DEFAULT NULL,
  `passwd_answer` varchar(255) DEFAULT NULL,
  `order_agreement` tinyint(3) NOT NULL,
  `province` smallint(5) unsigned NOT NULL DEFAULT '0',
  `city` smallint(5) unsigned NOT NULL DEFAULT '0',
  `district` smallint(5) unsigned NOT NULL DEFAULT '0',
  `address` varchar(255) NOT NULL,
  `company` varchar(255) NOT NULL,
  `inv_payee_number` varchar(120) NOT NULL,
  `contacts` varchar(255) NOT NULL,
  `end_time` int(11) DEFAULT NULL,
  `credit_user` tinyint(1) DEFAULT '0' COMMENT '是否是赊销账户',
  `credit_money` int(8) DEFAULT '0' COMMENT '赊销额度 ',
  `is_finish` tinyint(1) DEFAULT '0' COMMENT '是否完善个人信息 默认0不完善',
  `credit_time` int(11) DEFAULT '0' COMMENT '到期时间',
  `credit_end_time` varchar(200) DEFAULT NULL,
  `credit_periods` smallint(5) DEFAULT NULL COMMENT '赊销期数',
  `openid` varchar(120) DEFAULT NULL COMMENT '微信是否绑定',
  `user_label` text,
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `user_name` (`user_name`),
  KEY `email` (`email`),
  KEY `parent_id` (`parent_id`),
  KEY `flag` (`flag`)
) ENGINE=MyISAM AUTO_INCREMENT=97 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of ecs_users
-- ----------------------------
INSERT INTO `ecs_users` VALUES ('1', '[email protected]', 'linhan221', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1957-12-01', '840.00', '0.00', '2', '0', '1', '1499137861', '1516701339', '0000-00-00 00:00:00', '127.0.0.1', '106', '2', '0', '0', '0', '0', '0', '', '', '', '', '', '18853601830', '0', '0.00', null, null, '1', '0', '0', '0', '', '', '0', '', '1726076325', '0', '0', '0', null, null, null, null, '导弹,说的');
INSERT INTO `ecs_users` VALUES ('2', '[email protected]', 'songkangkang', 'bfc427155161b12a7c2319408368ffaf', '', '', '0', '1957-01-01', '129.00', '0.00', '0', '0', '2', '1499737540', '1510631423', '0000-00-00 00:00:00', '127.0.0.1', '477', '0', '0', '6237', '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '1', '0', '0', '0', '', '啊啊', '21323123', '', null, '0', null, '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('3', '[email protected]', 'linhan', '231cf325644f9eea34d6cd13752687f3', '', '', '1', '1993-09-15', '6400.00', '0.00', '0', '0', '3', '1500838999', '1508207104', '0000-00-00 00:00:00', '0.0.0.0', '50', '1', '0', '6446', '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '1', '5', '53', '660', '上海路29号', '精琢', '11111111111', '林瀚', '1508050206', '0', '2001', '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('4', '[email protected]', 'linhan2131', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1957-01-01', '0.00', '0.00', '0', '0', '0', '1503256101', '0', '0000-00-00 00:00:00', '', '0', '0', '0', null, '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '2', '37', '406', '北京路178号', '剑桥学院', '123213213121', '林瀚', null, '0', null, '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('5', '[email protected]', 'linhan21', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1957-01-01', '0.00', '0.00', '0', '0', '0', '1503256712', '0', '0000-00-00 00:00:00', '', '0', '0', '0', null, '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '2', '37', '404', '北京路178号', '剑桥学院', '123213213121', '林瀚', null, '0', null, '0', null, null, null, null, 'GJB 8004');
INSERT INTO `ecs_users` VALUES ('6', '[email protected]', 'woshiwang', '96e79218965eb72c92a549dd5a330112', '', '', '0', '2000-01-01', '0.00', '0.00', '0', '0', '0', '1503440266', '1503469067', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '0', '0', '', '', '', '', '', '', '0', '200.00', null, null, '0', '0', '0', '0', '', '', '0', '', null, '0', null, '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('8', '[email protected]', '添加', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1957-01-01', '0.00', '0.00', '0', '0', '0', '1504490616', '0', '0000-00-00 00:00:00', '', '0', '0', '0', null, '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '2', '37', '403', '北京', '精琢', '1234567890y', '呵呵哒', null, '0', null, '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('9', '[email protected]', 'linhan4456', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '0.00', '0.00', '0', '0', '0', '1505413947', '1505442747', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '0', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', null, '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('15', '[email protected]', '李狗蛋', '3d022e9aa898ee1a22ade6426521cca9', '', '', '0', '1957-01-01', '0.00', '0.00', '0', '0', '0', '1505438056', '1505466856', '0000-00-00 00:00:00', '127.0.0.1', '1', '0', '0', null, '0', '3', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '0', '', null, '0', '1000', '0', null, null, null, null, null);
INSERT INTO `ecs_users` VALUES ('18', '[email protected]', '13343686087', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1958-01-01', '10000.00', '0.00', '5016', '200', '56', '1508805619', '1514275854', '0000-00-00 00:00:00', '127.0.0.1', '4415', '2', '0', '3551', '0', '1', '0', '', '', '', '', '', '13343686087', '0', '0.00', null, null, '1', '2', '37', '405', 'adsfadsfad1', 'sadfadsf', '12312312', 'asdfaad', '1545062400', '1', '40000', '1', '0', '', '7', null, null);
INSERT INTO `ecs_users` VALUES ('16', '', 'ceshi123', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1957-01-01', '0.00', '0.00', '0', '0', '0', '1508199095', '0', '0000-00-00 00:00:00', '', '0', '0', '0', null, '0', '3', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '2', '37', '403', '大大', '打打', '0', '萨达', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('17', '[email protected]', 'lijin', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '2000-01-01', '16.00', '0.00', '189314', '188714', '80', '1508705144', '1520850043', '0000-00-00 00:00:00', '127.0.0.1', '849', '1', '0', null, '0', '8', '0', '', '', '', '', '', '18301674039', '0', '0.00', null, null, '0', '2', '37', '0', '西二旗', 'jingzhuo', '123456jz', '青春美少女', null, '0', '0', '1', '0', null, null, '', null);
INSERT INTO `ecs_users` VALUES ('19', '[email protected]', '13718237479', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1958-01-01', '0.00', '0.00', '364', '64', '27', '1508806191', '1516702561', '0000-00-00 00:00:00', '127.0.0.1', '90', '0', '0', '0', '0', '8', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '0', '', null, '0', '0', '0', '0', null, '1', null, null);
INSERT INTO `ecs_users` VALUES ('21', '', '13718237470', '88f8d9c93eb42ebdea6707b6bc722bb4', '', '', '0', '0000-00-00', '0.00', '0.00', '0', '0', '42', '1510530776', '1510738006', '0000-00-00 00:00:00', '127.0.0.1', '11', '0', '0', '0', '0', '2', '0', '', '', '', '', '', '13718237470', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, 'gjb,6042,HB 6041-1996,HB6041,gjb/z 170-2013,HB 6042,jgb,170,HB 6041');
INSERT INTO `ecs_users` VALUES ('22', '[email protected]', 'songkang1', '12fb190945482b1b57e5393191bafce2', '', '', '0', '1957-01-01', '110252.93', '0.00', '0', '0', '43', '1510648665', '1511175476', '0000-00-00 00:00:00', '0.0.0.0', '33', '0', '0', '3982', '0', '3', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('24', '', '18853601830', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '0.00', '0.00', '0', '0', '0', '1510714386', '1510743186', '0000-00-00 00:00:00', '127.0.0.1', '1', '0', '0', null, '0', '4', '0', '', '', '', '', '', '18853601830', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('28', '[email protected]', '13718237478', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1997-01-01', '1.00', '0.00', '1525', '29', '65', '1510716153', '1516788751', '0000-00-00 00:00:00', '127.0.0.1', '571', '2', '0', '0', '0', '3', '0', '', '', '', '', '', '13718237478', '0', '0.00', null, null, '0', '2', '37', '410', '西二旗啊', 'jingzhuo', '123456jz', '李金换', '1544125506', '0', '0', '1', '0', '', null, 'oz6yhxMaqba79anCxZ_AAemt5c3Q', 'gjb,11,请输入关键词,gjb9001');
INSERT INTO `ecs_users` VALUES ('27', '[email protected]', '1231231', '4297f44b13955235245b2497399d7a93', '', '', '0', '0000-00-00', '0.00', '0.00', '0', '0', '0', '1510744277', '1510744277', '0000-00-00 00:00:00', '127.0.0.1', '1', '0', '0', null, '0', '5', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, '', null);
INSERT INTO `ecs_users` VALUES ('50', '', 'admin', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '0.00', '0.00', '2', '0', '0', '0', '0', '0000-00-00 00:00:00', '', '0', '0', '0', null, '0', '1', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('69', '', 'GJB26AUT', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.13', '0.00', '8', '3', '0', '0', '1516693238', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '1', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('82', '', 'GJB5AW92', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '0', '0', '0', '0', '1516697288', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '5', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('83', '', 'GJB5BCZ6', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '0', '0', '0', '0', '1516697331', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '1', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('84', '', 'GJB5CJRQ', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '0', '0', '0', '0', '1516697375', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '3', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('85', '', 'GJB5DRGX', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '0', '0', '0', '0', '1516697383', '0000-00-00 00:00:00', '0.0.0.0', '1', '0', '0', null, '0', '9', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('86', '', 'GJB5DZKD', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '273', '273', '0', '0', '1516700413', '0000-00-00 00:00:00', '0.0.0.0', '2', '0', '0', null, '0', '69', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '0', '0', '0', '', '', '', '', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('95', '[email protected]', 'GJB2ALN7', 'e10adc3949ba59abbe56e057f20f883e', '', '', '0', '1958-01-01', '20.00', '0.00', '200', '0', '89', '1520294573', '1520842586', '0000-00-00 00:00:00', '0.0.0.0', '924', '2', '0', '0', '0', '9', '0', '', '', '', '', '', '18738220500', '0', '0.00', null, null, '0', '14', '158', '0', '打算范德萨', 'sadfadsf', '01213232', '大所发生的', '1521907200', '1', '0', '1', '0', null, '1', null, null);
INSERT INTO `ecs_users` VALUES ('87', '[email protected]', 'GJBDTB', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1958-01-01', '9429.50', '0.00', '243481', '243307', '83', '1516671613', '1520486868', '0000-00-00 00:00:00', '127.0.0.1', '3205', '2', '0', null, '0', '69', '0', '', '', '', '', '', '13718237477', '0', '0.00', null, null, '0', '2', '37', '0', '西二旗地铁站你好', 'jingzhuo', '123456jz', '李金换', '1706462757', '0', '0', '1', '0', null, '2', null, null);
INSERT INTO `ecs_users` VALUES ('94', '', 'GJB6SRV5', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '0000-00-00', '20.00', '0.00', '147308', '128312', '86', '1519930411', '1520245558', '0000-00-00 00:00:00', '0.0.0.0', '1094', '0', '0', null, '0', '1', '0', '', '', '', '', '', '17793116316', '0', '0.00', null, null, '0', '16', '171', '0', '哈尔滨', '', '', '林瀚', null, '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('89', '', 'GJB6U1D4', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1958-01-01', '9415.77', '0.00', '400', '0', '85', '1517880457', '1520846346', '0000-00-00 00:00:00', '0.0.0.0', '3289', '0', '0', null, '0', '1', '0', '', '', '', '', '', '15263800300', '0', '0.00', null, null, '0', '2', '37', '0', '哈平路267号', '天地', '', '张无忌', '1677000946', '0', '0', '0', '0', null, null, null, null);
INSERT INTO `ecs_users` VALUES ('96', '', 'ceshi', '46f94c8de14fb36680850768ff1b7f2a', '', '', '0', '1958-01-01', '0.00', '0.00', '0', '0', '0', '1520560502', '0', '0000-00-00 00:00:00', '', '0', '2', '0', null, '0', '1', '0', '', '', '', '', '', '', '0', '0.00', null, null, '0', '4', '40', '0', '上海路明珠塔旁中兴街125', '天地华宇', '364045', '林瀚', '1521734400', '0', '0', '0', '0', null, null, null, null);
DROP TRIGGER IF EXISTS `ecs_users_after_insert`;
DELIMITER ;;
CREATE TRIGGER `ecs_users_after_insert` AFTER INSERT ON `ecs_users` FOR EACH ROW BEGIN
   /********************************************/
   /*处理说明:用户表 新增后,同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_users_log 
	(log_id,
               user_id,
	email,
	user_name,
	PASSWORD,
	question,
	answer,
	sex,
	birthday,
	user_money,
	frozen_money,
	pay_points,
	rank_points,
	address_id,
	reg_time,
	last_login,
	last_time,
	last_ip,
	visit_count,
	user_rank,
	is_special,
	ec_salt,salt,
	parent_id,flag,
	alias,
	msn,
	qq,
	office_phone,
	home_phone,
	mobile_phone,
	is_validated,
	credit_line,
	passwd_question,
	passwd_answer,
	order_agreement,
	province,city,
	district,
	address,
	company,
	inv_payee_number,
	contacts,
	end_time,
	credit_user,
	credit_money,
	is_finish,
	credit_time,
	credit_end_time,
	credit_periods,
	openid,
	user_label,
	log_kind,
	log_time
	)
	VALUES
	(NULL,
	new.user_id,
	new.email,
	new.user_name,
	new.password,
	new.question,
	new.answer,
	new.sex,
	new.birthday,
	new.user_money,
	new.frozen_money,
	new.pay_points,
	new.rank_points,
	new.address_id,
	new.reg_time,
	new.last_login,
	new.last_time,
	new.last_ip,
	new.visit_count,
	new.user_rank,
	new.is_special,
	new.ec_salt,salt,
	new.parent_id,flag,
	new.alias,
	new.msn,
	new.qq,
	new.office_phone,
	new.home_phone,
	new.mobile_phone,
	new.is_validated,
	new.credit_line,
	new.passwd_question,
	new.passwd_answer,
	new.order_agreement,
	new.province,city,
	new.district,
	new.address,
	new.company,
	new.inv_payee_number,
	new.contacts,
	end_time,
	new.credit_user,
	new.credit_money,
	new.is_finish,
	new.credit_time,
	new.credit_end_time,
	new.credit_periods,
	new.openid,
	new.user_label,
	'插入', 
	NOW()
	);		
    END
;;
DELIMITER ;
DROP TRIGGER IF EXISTS `ecs_users_after_update`;
DELIMITER ;;
CREATE TRIGGER `ecs_users_after_update` AFTER UPDATE ON `ecs_users` FOR EACH ROW BEGIN
	/********************************************/
   /*处理说明:用户表 更新后,更新前后的数据同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_users_log 
	(log_id,
	user_id,
	email,
	user_name,
	PASSWORD,
	question,
	answer,
	sex,
	birthday,
	user_money,
	frozen_money,
	pay_points,
	rank_points,
	address_id,
	reg_time,
	last_login,
	last_time,
	last_ip,
	visit_count,
	user_rank,
	is_special,
	ec_salt,salt,
	parent_id,flag,
	alias,
	msn,
	qq,
	office_phone,
	home_phone,
	mobile_phone,
	is_validated,
	credit_line,
	passwd_question,
	passwd_answer,
	order_agreement,
	province,city,
	district,
	address,
	company,
	inv_payee_number,
	contacts,
	end_time,
	credit_user,
	credit_money,
	is_finish,
	credit_time,
	credit_end_time,
	credit_periods,
	openid,
	user_label,
	log_kind,
	log_time
	)
	VALUES
	(NULL,
	old.user_id,
	old.email,
	old.user_name,
	old.password,
	old.question,
	old.answer,
	old.sex,
	old.birthday,
	old.user_money,
	old.frozen_money,
	old.pay_points,
	old.rank_points,
	old.address_id,
	old.reg_time,
	old.last_login,
	old.last_time,
	old.last_ip,
	old.visit_count,
	old.user_rank,
	old.is_special,
	old.ec_salt,salt,
	old.parent_id,flag,
	old.alias,
	old.msn,
	old.qq,
	old.office_phone,
	old.home_phone,
	old.mobile_phone,
	old.is_validated,
	old.credit_line,
	old.passwd_question,
	old.passwd_answer,
	old.order_agreement,
	old.province,city,
	old.district,
	old.address,
	old.company,
	old.inv_payee_number,
	old.contacts,
	end_time,
	old.credit_user,
	old.credit_money,
	old.is_finish,
	old.credit_time,
	old.credit_end_time,
	old.credit_periods,
	old.openid,
	old.user_label,
	'更新前', 
	NOW()
	);		
	
   INSERT INTO ecs_users_log 
	(
	log_id,
	user_id,
	email,
	user_name,
	PASSWORD,
	question,
	answer,
	sex,
	birthday,
	user_money,
	frozen_money,
	pay_points,
	rank_points,
	address_id,
	reg_time,
	last_login,
	last_time,
	last_ip,
	visit_count,
	user_rank,
	is_special,
	ec_salt,salt,
	parent_id,flag,
	alias,
	msn,
	qq,
	office_phone,
	home_phone,
	mobile_phone,
	is_validated,
	credit_line,
	passwd_question,
	passwd_answer,
	order_agreement,
	province,city,
	district,
	address,
	company,
	inv_payee_number,
	contacts,
	end_time,
	credit_user,
	credit_money,
	is_finish,
	credit_time,
	credit_end_time,
	credit_periods,
	openid,
	user_label,
	log_kind,
	log_time
	)
	VALUES
	(NULL,
	new.user_id,
	new.email,
	new.user_name,
	new.password,
	new.question,
	new.answer,
	new.sex,
	new.birthday,
	new.user_money,
	new.frozen_money,
	new.pay_points,
	new.rank_points,
	new.address_id,
	new.reg_time,
	new.last_login,
	new.last_time,
	new.last_ip,
	new.visit_count,
	new.user_rank,
	new.is_special,
	new.ec_salt,salt,
	new.parent_id,flag,
	new.alias,
	new.msn,
	new.qq,
	new.office_phone,
	new.home_phone,
	new.mobile_phone,
	new.is_validated,
	new.credit_line,
	new.passwd_question,
	new.passwd_answer,
	new.order_agreement,
	new.province,city,
	new.district,
	new.address,
	new.company,
	new.inv_payee_number,
	new.contacts,
	end_time,
	new.credit_user,
	new.credit_money,
	new.is_finish,
	new.credit_time,
	new.credit_end_time,
	new.credit_periods,
	new.openid,
	new.user_label,
	'更新后', 
	NOW()
	);		
	
    END
;;
DELIMITER ;
DROP TRIGGER IF EXISTS `ecs_users_after_delete`;
DELIMITER ;;
CREATE TRIGGER `ecs_users_after_delete` AFTER DELETE ON `ecs_users` FOR EACH ROW BEGIN
   /********************************************/
   /*处理说明:用户表 删除后,更新前后的数据同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_users_log 
	(log_id,
	user_id,
	email,
	user_name,
	PASSWORD,
	question,
	answer,
	sex,
	birthday,
	user_money,
	frozen_money,
	pay_points,
	rank_points,
	address_id,
	reg_time,
	last_login,
	last_time,
	last_ip,
	visit_count,
	user_rank,
	is_special,
	ec_salt,salt,
	parent_id,flag,
	alias,
	msn,
	qq,
	office_phone,
	home_phone,
	mobile_phone,
	is_validated,
	credit_line,
	passwd_question,
	passwd_answer,
	order_agreement,
	province,city,
	district,
	address,
	company,
	inv_payee_number,
	contacts,
	end_time,
	credit_user,
	credit_money,
	is_finish,
	credit_time,
	credit_end_time,
	credit_periods,
	openid,
	user_label,
	log_kind,
	log_time
	)
	VALUES
	(NULL,
	old.user_id,
	old.email,
	old.user_name,
	old.password,
	old.question,
	old.answer,
	old.sex,
	old.birthday,
	old.user_money,
	old.frozen_money,
	old.pay_points,
	old.rank_points,
	old.address_id,
	old.reg_time,
	old.last_login,
	old.last_time,
	old.last_ip,
	old.visit_count,
	old.user_rank,
	old.is_special,
	old.ec_salt,salt,
	old.parent_id,flag,
	old.alias,
	old.msn,
	old.qq,
	old.office_phone,
	old.home_phone,
	old.mobile_phone,
	old.is_validated,
	old.credit_line,
	old.passwd_question,
	old.passwd_answer,
	old.order_agreement,
	old.province,city,
	old.district,
	old.address,
	old.company,
	old.inv_payee_number,
	old.contacts,
	end_time,
	old.credit_user,
	old.credit_money,
	old.is_finish,
	old.credit_time,
	old.credit_end_time,
	old.credit_periods,
	old.openid,user_label,
	'删除前', 
	NOW()
	);		
	
    END
;;
DELIMITER ;

ecs_order_info表结构:

/*
Navicat MySQL Data Transfer

Source Server         : PHP
Source Server Version : 50540
Source Host           : localhost:3306
Source Database       : test

Target Server Type    : MYSQL
Target Server Version : 50540
File Encoding         : 65001

Date: 2018-03-27 14:39:19
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for ecs_order_info
-- ----------------------------
DROP TABLE IF EXISTS `ecs_order_info`;
CREATE TABLE `ecs_order_info` (
  `order_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `order_sn` varchar(20) NOT NULL DEFAULT '',
  `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `order_status` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `shipping_status` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `pay_status` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `invoice_status` tinyint(1) NOT NULL COMMENT '发票状态',
  `consignee` varchar(60) NOT NULL DEFAULT '',
  `country` smallint(5) unsigned NOT NULL DEFAULT '0',
  `province` smallint(5) unsigned NOT NULL DEFAULT '0',
  `city` smallint(5) unsigned NOT NULL DEFAULT '0',
  `district` smallint(5) unsigned NOT NULL DEFAULT '0',
  `address` varchar(255) NOT NULL DEFAULT '',
  `zipcode` varchar(60) NOT NULL DEFAULT '',
  `tel` varchar(60) NOT NULL DEFAULT '',
  `mobile` varchar(60) NOT NULL DEFAULT '',
  `email` varchar(60) NOT NULL DEFAULT '',
  `best_time` varchar(120) NOT NULL DEFAULT '',
  `sign_building` varchar(120) NOT NULL DEFAULT '',
  `postscript` varchar(255) NOT NULL DEFAULT '',
  `shipping_id` tinyint(3) NOT NULL DEFAULT '0',
  `shipping_name` varchar(120) NOT NULL DEFAULT '',
  `pay_id` tinyint(3) NOT NULL DEFAULT '0',
  `pay_name` varchar(120) NOT NULL DEFAULT '',
  `how_oos` varchar(120) NOT NULL DEFAULT '',
  `how_surplus` varchar(120) NOT NULL DEFAULT '',
  `pack_name` varchar(120) NOT NULL DEFAULT '',
  `card_name` varchar(120) NOT NULL DEFAULT '',
  `card_message` varchar(255) NOT NULL DEFAULT '',
  `inv_payee_number` varchar(120) NOT NULL DEFAULT '',
  `inv_payee` varchar(120) NOT NULL DEFAULT '',
  `inv_content` varchar(120) NOT NULL DEFAULT '',
  `goods_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
  `shipping_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `insure_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `pay_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `pack_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `card_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `goods_discount_fee` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '对接erp专用,商品优惠总金额',
  `money_paid` decimal(10,2) NOT NULL DEFAULT '0.00',
  `surplus` decimal(10,2) NOT NULL DEFAULT '0.00',
  `integral` int(10) unsigned NOT NULL DEFAULT '0',
  `integral_money` decimal(10,2) NOT NULL DEFAULT '0.00',
  `bonus` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
  `from_ad` smallint(5) NOT NULL DEFAULT '0',
  `referer` varchar(255) NOT NULL DEFAULT '',
  `add_time` int(10) unsigned NOT NULL DEFAULT '0',
  `confirm_time` int(10) unsigned NOT NULL DEFAULT '0',
  `pay_time` int(10) unsigned NOT NULL DEFAULT '0',
  `shipping_time` int(10) unsigned NOT NULL DEFAULT '0',
  `pack_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `card_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `bonus_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `invoice_no` varchar(255) NOT NULL DEFAULT '',
  `extension_code` varchar(30) NOT NULL DEFAULT '',
  `extension_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `to_buyer` varchar(255) NOT NULL DEFAULT '',
  `pay_note` varchar(255) NOT NULL DEFAULT '',
  `agency_id` smallint(5) unsigned NOT NULL,
  `inv_type` varchar(60) NOT NULL,
  `tax` decimal(10,2) NOT NULL,
  `is_separate` tinyint(1) NOT NULL DEFAULT '0',
  `parent_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `discount` decimal(10,2) NOT NULL,
  `callback_status` enum('true','false') DEFAULT 'true',
  `lastmodify` int(10) unsigned NOT NULL DEFAULT '0',
  `search_words` varchar(255) DEFAULT NULL,
  `is_replace_order` tinyint(1) NOT NULL DEFAULT '0',
  `re_invoice_no` varchar(255) DEFAULT NULL COMMENT '补开发票快递号',
  `invoice_time` bigint(18) DEFAULT NULL COMMENT '开发票时间',
  `reinvoice_time` bigint(18) DEFAULT NULL COMMENT '补开发票时间',
  PRIMARY KEY (`order_id`),
  UNIQUE KEY `order_sn` (`order_sn`),
  KEY `user_id` (`user_id`),
  KEY `order_status` (`order_status`),
  KEY `shipping_status` (`shipping_status`),
  KEY `pay_status` (`pay_status`),
  KEY `shipping_id` (`shipping_id`),
  KEY `pay_id` (`pay_id`),
  KEY `extension_code` (`extension_code`,`extension_id`),
  KEY `agency_id` (`agency_id`)
) ENGINE=MyISAM AUTO_INCREMENT=731 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of ecs_order_info
-- ----------------------------
INSERT INTO `ecs_order_info` VALUES ('155', '2017090725620', '31', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '6', '<font color=\"#FF0000\">天工收银</font>', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '80.00', '0', '本站', '1504772040', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504772040', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('657', '2018030191720', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1519871999', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('662', '2018030170569', '1', '0', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '0', '', '标准 资料 复印', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '10.00', '0', '', '1519882191', '1519882191', '1519882191', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('129', '2017082376893', '6', '1', '3', '2', '0', '666', '1', '0', '0', '0', '', '', '6', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '', '', '', '', '', 'tt', 'rr', '', '99.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '99.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1503478711', '1503478914', '1504670024', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504670030', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('130', '2017082372678', '0', '1', '0', '2', '0', '444', '1', '3', '38', '425', '4', '', '444', '', '', '', '', '', '1', '顺丰速运', '5', '银联在线支付', '', '', '', '', '', '', '', '', '99000.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '99000.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1503478988', '1503479033', '1503479053', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1503479053', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('131', '2017082342078', '0', '1', '0', '2', '0', '77', '1', '4', '42', '494', '7', '', '777', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1503479244', '1503479294', '1503479294', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1503479294', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('661', '2018030176436', '89', '1', '0', '0', '0', '林瀚', '1', '5', '52', '654', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '3', '支付宝', '', '', '', '', '', '', '', '图书', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1519872405', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1519872665', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('152', '2017090630786', '3', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '12.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12.00', '0', '本站', '1504683961', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504683961', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('140', '2017090635201', '7', '0', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '235.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '235.00', '0', '管理员添加', '1504676160', '1504677360', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504677360', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('141', '2017090693062', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', 'sbkehudesbyaoqiu', '', '', '213.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '213.00', '0', '管理员添加', '1504677498', '1504677596', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504677596', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('142', '2017090641517', '0', '1', '3', '2', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '99.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '213.00', '0.00', '0', '0.00', '0.00', '-114.00', '0', '管理员添加', '1504678084', '0', '1504678279', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504682079', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('143', '2017090690022', '0', '3', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1504679477', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('150', '2017090661518', '3', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '6.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '6.00', '0', '本站', '1504683694', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504683694', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('149', '2017090699755', '3', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '12.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12.00', '0', '本站', '1504682764', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504682764', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('144', '2017090640120', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1504681473', '1504681473', '1504681473', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('139', '2017090584553', '1', '6', '4', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '233.90', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '233.90', '0.00', '0', '0.00', '0.00', '0.00', '2', '本站', '1504581181', '1504669220', '1504669227', '1504669333', '0', '0', '0', '', '', '0', '12312', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504669333', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('151', '2017090675349', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1504683816', '1504683816', '1504683816', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1504683816', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('156', '2017091164639', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505121983', '1505121983', '1505121983', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505121983', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('157', '2017091144146', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '22.00', '0', '本站', '1505122028', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505122028', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('158', '2017091287243', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '5', '银联在线支付', '与店主协商', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505182243', '1505182243', '1505182243', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505182243', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('159', '2017091238177', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '5', '银联在线支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '12.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12.00', '0', '本站', '1505182439', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505182439', '啊啊啊,测试', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('160', '2017091240833', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '5', '银联在线支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '12.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12.00', '0', '本站', '1505206107', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505206107', '啊啊啊', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('161', '2017091259655', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '5', '银联在线支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '110.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '110.00', '0', '本站', '1505208621', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505208621', '12312', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('162', '2017091217147', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505209209', '1505209209', '1505209209', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505209209', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('163', '2017091249573', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505209252', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505209252', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('164', '2017091260606', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505209318', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505209318', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('165', '2017091232314', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '22.00', '0', '本站', '1505209381', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505209381', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('166', '2017091207473', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '12.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12.00', '0', '本站', '1505209604', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505209604', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('167', '2017091311131', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505284355', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505284355', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('168', '2017091369903', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505284410', '1505284410', '1505284410', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505284410', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('169', '2017091352248', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505284987', '1505284987', '1505284987', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505284987', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('170', '2017091365213', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285004', '1505285004', '1505285004', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285004', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('171', '2017091347864', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505285071', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285071', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('172', '2017091386395', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285092', '1505285092', '1505285092', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285092', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('173', '2017091338272', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285216', '1505285216', '1505285216', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285216', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('174', '2017091381898', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285429', '1505285429', '1505285429', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285429', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('175', '2017091383695', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285511', '1505285511', '1505285511', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285511', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('176', '2017091325290', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285601', '1505285601', '1505285601', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285601', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('177', '2017091340299', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285614', '1505285614', '1505285614', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285614', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('178', '2017091360708', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505285782', '1505285782', '1505285782', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505285782', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('179', '2017091368994', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1505288835', '1505288835', '1505288835', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505288835', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('180', '2017091357658', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505296366', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505296366', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('181', '2017091347759', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505296542', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505296542', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('345', '2017112341873', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511420629', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511427060', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('334', '2017112038068', '22', '1', '0', '2', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '13343686087', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '788.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '813.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1511161189', '1511161189', '1511161189', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511161189', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('183', '2017091444020', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1505353854', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1505353854', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('188', '2017091580216', '2', '1', '0', '2', '0', '李狗蛋', '1', '14', '151', '1603', '', '', '17610270967', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '21323123', '啊啊', '标准 资料 复印', '23.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505445233', '1505445233', '1505456137', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '1505456137', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('189', '2017091554126', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505456029', '1505456029', '1505456029', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('190', '2017091519863', '17', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505456825', '1505456825', '1505456825', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('191', '2017091518745', '49', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505456982', '1505456982', '1505456982', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('192', '2017091590325', '15', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457506', '1505457506', '1505457506', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('193', '2017091569003', '50', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457536', '1505457536', '1505457536', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('195', '2017091597707', '57', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457633', '1505457633', '1505457633', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('196', '2017091596528', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457699', '1505457699', '1505457699', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('197', '2017091586574', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457759', '1505457759', '1505457759', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('198', '2017091550256', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457867', '1505457867', '1505457867', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('199', '2017091558364', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457904', '1505457904', '1505457904', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('200', '2017091524394', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457941', '1505457941', '1505457941', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('201', '2017091516267', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505457966', '1505457966', '1505457966', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('202', '2017091531325', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458085', '1505458085', '1505458085', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('203', '2017091548485', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458136', '1505458136', '1505458136', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('204', '2017091532915', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458170', '1505458170', '1505458170', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('205', '2017091548082', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458171', '1505458171', '1505458171', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('206', '2017091506392', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458206', '1505458206', '1505458206', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('207', '2017091591291', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458224', '1505458224', '1505458224', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('208', '2017091523496', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458359', '1505458359', '1505458359', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('209', '2017091509079', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458421', '1505458421', '1505458421', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('210', '2017091545983', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458462', '1505458462', '1505458462', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('211', '2017091538825', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458498', '1505458498', '1505458498', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('212', '2017091500359', '3', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '', '', '13718237477', '', '[email protected]', '', '', '生日礼物', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '', '1505458520', '1505458520', '1505458520', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('220', '2017091817467', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505723682', '1505723716', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505724301', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('214', '2017091878506', '0', '1', '0', '0', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '23.00', '0', '管理员添加', '1505717300', '1505717637', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505717637', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('221', '2017091833330', '1', '1', '0', '2', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '1.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '16.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505724520', '1505724707', '1505724707', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505724707', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('219', '2017091851151', '1', '1', '0', '2', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505723596', '1505723644', '1505723644', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505723644', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('217', '2017091839438', '1', '1', '0', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '0.90', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '15.90', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505721047', '1505722529', '1505722529', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505722893', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('223', '2017091891166', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505725698', '1505728908', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505729489', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('222', '2017091815803', '1', '1', '0', '0', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505724723', '1505724756', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505724933', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('224', '2017091894118', '1', '1', '0', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505729544', '1505729587', '1505729587', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505729587', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('225', '2017091810950', '1', '1', '0', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '19.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505729602', '1505729663', '1505729663', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '4.00', 'true', '1505729691', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('226', '2017091838911', '1', '1', '0', '0', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '64.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '56.00', '0', '管理员添加', '1505729810', '1505730005', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505879056', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('227', '2017092010199', '9', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '136.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '136.00', '0', '管理员添加', '1505879082', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505879112', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('228', '2017092041111', '9', '1', '0', '0', '0', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', 'cxvdsfds', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '4234214dsgdsf', 'ceshi', '', '183.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '198.00', '0', '管理员添加', '1505879140', '1505879191', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506052312', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('229', '2017092022873', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505890200', '1505890295', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1505890316', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('230', '2017092069546', '1', '1', '3', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '23.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505890350', '1506319068', '1506319068', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1507707510', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('231', '2017092079211', '1', '1', '3', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '8.00', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '21.00', '2.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1505890430', '1505896404', '1507790064', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1507790068', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('232', '2017092013634', '0', '6', '5', '0', '1', '测试', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '330.00', '21.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '351.00', '0', '管理员添加', '1505905645', '1505905738', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506325017', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('233', '2017092096369', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.50', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '34.50', '0', '本站', '1505908286', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506326366', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('234', '2017092084898', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.75', '0', '本站', '1505908358', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '4.75', 'true', '1506052127', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('235', '2017092242797', '1', '1', '0', '0', '1', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '我们的世界', '图书', '51.80', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '51.80', '0', '本站', '1506065201', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1506065265', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('237', '2017092296110', '1', '5', '1', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '我们的世界', '图书', '9.50', '15.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '24.50', '0', '本站', '1506083597', '0', '0', '1506083735', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1506083735', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('239', '2017092573266', '1', '5', '5', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '34.50', '0', '本站', '1506312046', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506325076', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('240', '2017092595442', '1', '1', '3', '2', '1', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '9.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1506312083', '1507788091', '1507788091', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1507788105', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('241', '2017092549115', '1', '5', '1', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '34.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1506312118', '0', '1506326597', '1506326628', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506326628', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('242', '2017092579551', '1', '6', '5', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '89.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '114.50', '0', '本站', '1506326434', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506326703', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('243', '2017092570361', '1', '1', '3', '2', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '34.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1506331774', '0', '1507708019', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1507791800', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('244', '2017092526457', '1', '5', '5', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '9.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '34.50', '0', '本站', '1506332586', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1506332681', '5', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('247', '2017101823292', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1508308870', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('245', '2017092988956', '0', '5', '5', '2', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1506668442', '0', '1507789848', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1507790006', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('246', '2017101611531', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1508140829', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('248', '2017101830958', '1', '1', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '测试', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '87.06', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '112.06', '0', '本站', '1508309018', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1508309201', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('249', '2017101829393', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1508312288', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('250', '2017102324532', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1508742373', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('251', '2017110149460', '20', '1', '0', '2', '0', '林瀚', '1', '5', '54', '675', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1509515078', '1509515078', '1509515078', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1509515078', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('252', '2017110287870', '0', '5', '1', '0', '0', '测试', '1', '3', '38', '422', '西二旗啊', '', '18211657935', '', '[email protected]', '', '', '', '4', '中通速递', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '', '160.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '160.00', '0', '管理员添加', '1509601642', '1509601846', '0', '1510210300', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510210300', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('253', '2017110945717', '19', '5', '1', '2', '0', '测试账号', '1', '18', '204', '2135', '西二旗啊呵呵哒', '', '18211657935', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '4.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '31.00', '0.00', '0', '0.00', '-6.00', '0.00', '0', '本站', '1510210459', '0', '1510210505', '1510210537', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '4.00', 'true', '1510210537', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('254', '2017110942964', '19', '5', '1', '2', '0', '测试账号', '1', '18', '204', '2135', '西二旗啊呵呵哒', '', '18211657935', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '34.00', '0.00', '0', '0.00', '-9.00', '0.00', '0', '本站', '1510215291', '0', '1510215314', '1510215335', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '20.00', 'true', '1510215335', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('255', '2017110958604', '19', '5', '1', '2', '0', '测试账号', '1', '18', '204', '2135', '西二旗啊呵呵哒', '', '18211657935', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '34.00', '0.00', '0', '0.00', '-9.00', '0.00', '0', '本站', '1510215387', '0', '1510215402', '1510215422', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '20.00', 'true', '1510215422', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('279', '2017111591430', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510736952', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510736952', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('271', '2017111579133', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510734820', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510734820', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('283', '2017111655631', '18', '2', '0', '0', '0', 'adsfsdf', '1', '4', '41', '482', '', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '', '23.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '23.00', '0', '', '1510819917', '1510819917', '1512111920', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510820332', '', '1', '', null, null);
INSERT INTO `ecs_order_info` VALUES ('273', '2017111581825', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510735042', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510735042', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('274', '2017111579981', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510735862', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510735862', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('275', '2017111511993', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510736528', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510736528', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('276', '2017111583138', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510736576', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510736576', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('277', '2017111569202', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510736729', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510736729', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('278', '2017111546068', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510736897', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510736897', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('280', '2017111565850', '22', '1', '0', '0', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1.00', '0', '0.00', '0.00', '24.00', '0', '本站', '1510737427', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510737427', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('281', '2017111596690', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '5.00', '0', '本站', '1510747637', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510747637', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('285', '2017111604565', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '319.20', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '309.20', '0', '0.00', '0.00', '0.00', '0', '本站', '1510823530', '1510823530', '1510823530', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '10.00', 'true', '1510823530', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('286', '2017111780973', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '1.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1510900449', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510900449', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('287', '2017111732370', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '1.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.00', '0', '本站', '1510900587', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1510900587', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('288', '2017111714742', '18', '0', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '244.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '269.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510902483', '1510902483', '1510902483', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510902483', ' , ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('289', '2017111780302', '22', '1', '0', '2', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '13343686087', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '7.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '7.07', '0', '0.00', '0.00', '0.00', '0', '本站', '1510903872', '0', '1510913557', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.07', '0', '0', '0.00', 'true', '1510903872', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('290', '2017111730031', '30', '0', '0', '0', '0', '林瀚', '1', '2', '37', '403', '哈平路267号', '12312', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '本站', '1510904905', '0', '0', '0', '0', '0', '0', '', 'exchange_goods', '11', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510904905', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('291', '2017111740528', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '25.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510905038', '1510905038', '1510905038', '0', '0', '0', '0', '', 'exchange_goods', '11', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510905038', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('292', '2017111774414', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '25.00', '2', '0.00', '0.00', '0.00', '0', '本站', '1510905071', '1510905071', '1510905071', '0', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1510905071', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('293', '2017111769581', '22', '1', '0', '2', '0', 'adsfasd', '1', '17', '196', '2063', '123123213123123', '', '13311111111', '13343686087', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '10.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '25.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510913638', '1510913638', '1510913638', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '10.00', 'true', '1510913638', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('294', '2017111813227', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '126.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510975949', '1510975949', '1510975949', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510975949', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('295', '2017111822872', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '41', '482', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '126.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510976146', '1510976146', '1510976146', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510976146', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('296', '2017111829721', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '0.95', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.95', '0', '本站', '1510976667', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1510976667', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('297', '2017111877977', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '0.95', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.95', '0', '本站', '1510976754', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1510976754', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('298', '2017111806412', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '0.95', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.95', '0', '本站', '1510976780', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1510976780', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('299', '2017111851128', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '126.00', '0', '本站', '1510976977', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510976977', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('300', '2017111811823', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '126.00', '0', '本站', '1510977007', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510977007', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('301', '2017111890999', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '126.00', '0', '本站', '1510977153', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510977153', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('302', '2017111895545', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510978070', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510978070', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('303', '2017111815272', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510978098', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510978098', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('304', '2017111849676', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510978118', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510978118', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('305', '2017111846065', '18', '1', '0', '0', '0', 'adsfsdf', '1', '3', '38', '423', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510978229', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510978229', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('306', '2017111877282', '18', '1', '0', '0', '0', 'adsfsdf', '1', '4', '42', '493', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510978406', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510978406', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('307', '2017111856592', '18', '1', '0', '0', '0', 'adsfsdf', '1', '4', '42', '493', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '126.00', '0', '本站', '1510979179', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510979179', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('308', '2017111856130', '18', '1', '0', '0', '0', 'adsfsdf', '1', '4', '42', '493', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510979255', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510979255', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('309', '2017111846260', '18', '1', '0', '0', '0', 'adsfsdf', '1', '4', '42', '493', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '126.00', '0', '本站', '1510979296', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510979296', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('310', '2017111822126', '18', '1', '0', '2', '0', 'adsfsdf', '1', '4', '42', '493', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '78.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '98.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510980100', '0', '1512099517', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1512099517', ' ', '0', '', null, null);
INSERT INTO `ecs_order_info` VALUES ('311', '2017111884527', '18', '1', '0', '2', '0', 'adsfsdf', '1', '5', '51', '643', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510980166', '0', '1512096779', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1512096779', '', '0', '', null, null);
INSERT INTO `ecs_order_info` VALUES ('312', '2017111832542', '18', '1', '0', '0', '0', 'adsfsdf', '1', '5', '51', '643', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1510980693', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '5.00', 'true', '1510980693', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('313', '2017111821262', '18', '1', '0', '2', '0', 'adsfsdf', '1', '5', '51', '643', '123123213123123', '', '13311111111', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '126.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510980738', '1510980738', '1510980738', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510980738', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('314', '2017111806302', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510980859', '1510980859', '1510980859', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510980859', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('315', '2017111823323', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981026', '1510981026', '1510981026', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981026', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('316', '2017111889834', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981100', '1510981100', '1510981100', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981100', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('317', '2017111884792', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981303', '1510981303', '1510981303', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981303', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('318', '2017111895932', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '106.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '126.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981458', '1510981458', '1510981458', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981458', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('319', '2017111843788', '18', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '80.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '41.00', '0', '本站', '1510981501', '1510981501', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1511940423', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('320', '2017111845542', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981558', '1510981558', '1510981558', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981558', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('321', '2017111846941', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981604', '1510981604', '1510981604', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981604', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('322', '2017111818419', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981672', '1510981672', '1510981672', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981672', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('323', '2017111876226', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981711', '1510981711', '1510981711', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981711', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('324', '2017111823587', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981748', '1510981748', '1510981748', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981748', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('325', '2017111843630', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981906', '1510981906', '1510981906', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981906', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('326', '2017111814813', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981934', '1510981934', '1510981934', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981934', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('327', '2017111868742', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510981952', '1510981952', '1510981952', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510981952', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('328', '2017111808507', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510982090', '1510982090', '1510982090', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510982090', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('329', '2017111810297', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '424', '123123213123123', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1510982224', '1510982224', '1510982224', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '5.00', 'true', '1510982224', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('344', '2017112238701', '28', '2', '0', '0', '0', '金大王', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '95.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '95.00', '21', '本站', '1511338400', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512477134', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('342', '2017112082978', '31', '0', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '', '', '标准 资料 复印', '22.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '22.00', '0', '', '1511177905', '1511177905', '1511177905', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('343', '2017112019816', '2', '0', '0', '0', '0', '李狗蛋', '1', '14', '151', '1603', '', '', '17610270967', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '21323123', '啊啊', '标准 资料 复印', '22.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '22.00', '0', '', '1511177906', '1511177906', '1511177906', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('346', '2017112335541', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511423699', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('347', '2017112380258', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511424022', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('348', '2017112335705', '0', '1', '0', '0', '1', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511424136', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('349', '2017112369692', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '1273.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1273.00', '0', '管理员添加', '1511424171', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511751187', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('350', '2017112387488', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511424381', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('351', '2017112388902', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511424410', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('352', '2017112300967', '0', '5', '1', '2', '2', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '80.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511428155', '0', '1511494269', '1511494300', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511494300', null, '0', '3243242', null, null);
INSERT INTO `ecs_order_info` VALUES ('353', '2017112323555', '0', '5', '1', '2', '1', '林瀚', '1', '2', '37', '404', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '你觉得这是个什么样的发票?', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '图书', '80.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '105.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1511429883', '0', '1511761069', '1511761092', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1511761092', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('355', '2017112484684', '0', '3', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '240.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '240.00', '0', '管理员添加', '1511502153', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511502239', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('356', '2017112443271', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1511504629', '1511504629', '1511504629', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511504629', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('357', '2017112436673', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1511504725', '1511504725', '1511504725', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511504725', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('359', '2017112420240', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '51.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1511507090', '1511507090', '1511507090', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511507090', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('360', '2017112440344', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '51.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1511507163', '1511507163', '1511507163', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511507163', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('361', '2017112402994', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.30', '0', '0.00', '0.00', '-51.30', '0', '本站', '1511514088', '1511514088', '1511514088', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511938845', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('362', '2017112412955', '18', '1', '0', '2', '0', '林瀚', '1', '3', '38', '427', '123123213123123', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.30', '0', '0.00', '0.00', '-51.30', '0', '本站', '1511514182', '1511514182', '1511514182', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511751098', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('395', '2017120633539', '28', '6', '4', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '186.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '186.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1512547314', '0', '1512704080', '1512704816', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512704816', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('396', '2017120667104', '18', '5', '5', '2', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '39.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '64.89', '1', '0.01', '0.00', '0.00', '0', '本站', '1512553275', '1512553275', '1512553275', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512704040', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('364', '2017112860329', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '0', '', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '本站', '1511848687', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511939607', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('365', '2017112811241', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '54.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '54.00', '0', '本站', '1511848765', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1511939351', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('366', '2017112849434', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '0', '', '等待所有商品备齐后再发', '', '', '', '', '', '0', '图书', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '79.00', '0', '本站', '1511848817', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1511848817', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('367', '2017112832548', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '0', '图书', '74.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '99.00', '0', '本站', '1511848866', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1511848866', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('368', '2017112864255', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '40.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '65.00', '0', '本站', '1511861862', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511861862', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('369', '2017112801151', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '40.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '65.00', '0', '本站', '1511862035', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511862035', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('370', '2017112887651', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '本站', '1511862250', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511938942', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('371', '2017112875434', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '40.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '65.00', '0', '本站', '1511862281', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511862281', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('372', '2017112889263', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '本站', '1511862654', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511940363', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('373', '2017112816317', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '24.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '49.00', '0', '本站', '1511863274', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511863274', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('374', '2017112819918', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1511864118', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511864118', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('375', '2017112856983', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '本站', '1511867204', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511940037', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('376', '2017112944645', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '70.00', '0', '本站', '1511939386', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '10.00', 'true', '1511940358', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('377', '2017112916822', '31', '1', '0', '0', '0', 'adsfsdf', '1', '2', '37', '405', '123131大师傅', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1511955691', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1511955691', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('378', '2017113024788', '28', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊333', '', '18211657935', '', '', '', '', '呵呵呵哒', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '54.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '54.00', '0', '本站', '1512031249', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512031249', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('379', '2017120173304', '18', '1', '0', '2', '0', '其味无穷', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '51.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.29', '1', '0.01', '0.00', '0.00', '0', '本站', '1512095449', '0', '1512099504', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512099504', '', '0', '', null, null);
INSERT INTO `ecs_order_info` VALUES ('380', '2017120119338', '18', '1', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '51.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '76.30', '0', '本站', '1512095482', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512095482', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('381', '2017120159677', '18', '1', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1', '0.01', '0.00', '45.89', '0', '本站', '1512107739', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512107739', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('382', '2017120123950', '48', '5', '1', '2', '2', '林瀚', '1', '4', '43', '515', '哈尔滨', '', '13718237477', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '376.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '376.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1512112464', '1512112464', '1512112464', '1512112888', '0', '0', '0', '12412121', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512112888', '', '0', '12321', null, null);
INSERT INTO `ecs_order_info` VALUES ('383', '2017120132430', '18', '1', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '43.70', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '68.70', '0', '本站', '1512127783', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512127783', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('399', '2017120873363', '18', '1', '0', '2', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1512705239', '1512705239', '1512705239', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512705239', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('385', '2017120127569', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13718237477', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '56.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '56.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1512128507', '1512128507', '1512128507', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512128507', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('397', '2017120663712', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '64.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '1', '0.01', '0.00', '63.99', '0', '本站', '1512559804', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512559804', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('398', '2017120774615', '18', '1', '3', '2', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '138.70', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '163.70', '0', '0.00', '0.00', '0.00', '0', '本站', '1512641473', '1512641473', '1512641473', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512703972', ' ceshi', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('389', '2017120414419', '18', '1', '0', '2', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '619.40', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '644.39', '1', '0.01', '0.00', '0.00', '0', '本站', '1512380664', '1512380664', '1512380664', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512380664', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('400', '2017120951745', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.00', '0', '本站', '1512812295', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512812295', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('391', '2017120520004', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '160.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '150.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1512475856', '1512475856', '1512475856', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '10.00', 'true', '1512475856', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('401', '2017120909944', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.00', '0', '本站', '1512812337', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512812337', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('402', '2017120932034', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.00', '0', '本站', '1512812552', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1512812552', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('403', '2017120914394', '28', '1', '0', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '57.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '56.99', '1', '0.01', '0.00', '0.00', '0', '本站', '1512815486', '1512815486', '1512815486', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1512815486', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('404', '2017121224723', '53', '1', '0', '2', '0', '的撒发达', '1', '3', '38', '424', 'awful', '', '18738220500', '', '', '', '', '', '3', 'EMS 国内邮政特快专递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '79.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513070214', '1513070214', '1513070214', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513070214', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('405', '2017121218964', '53', '5', '1', '2', '2', '的撒发达', '1', '3', '38', '424', 'awful', '', '18738220500', '', '', '', '', '', '3', 'EMS 国内邮政特快专递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '238.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '263.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513070265', '1513070265', '1513070265', '1513070482', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513070482', '', '0', '29131023', null, null);
INSERT INTO `ecs_order_info` VALUES ('406', '2017121298067', '0', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '12321321', '撒旦撒', '图书', '80.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '105.00', '0', '管理员添加', '1513074530', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513074742', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('407', '2017121206249', '53', '1', '0', '0', '0', '的撒发达', '1', '3', '38', '424', 'awful', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '12321321', '撒旦撒', '图书', '80.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '105.00', '0', '管理员添加', '1513074858', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513074881', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('408', '2017121280047', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '80.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513080133', '1513080133', '1513080133', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513080133', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('409', '2017121244343', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '119.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '119.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513080211', '1513080211', '1513080211', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513080211', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('410', '2017121276807', '18', '1', '0', '0', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '测试', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '36.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '36.00', '0', '本站', '1513080857', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513080857', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('411', '2017121246451', '49', '5', '5', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '148.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '148.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513081288', '1513081288', '1513081288', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513134974', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('412', '2017121285423', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '202.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '202.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513087587', '1513087587', '1513087587', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513087587', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('413', '2017121252973', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '202.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '202.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513087667', '1513087667', '1513087667', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513087667', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('414', '2017121245869', '49', '1', '0', '2', '0', '林瀚', '1', '4', '40', '468', '哈尔滨', '', '13261579209', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '202.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '202.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513087770', '1513087770', '1513087770', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513087770', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('415', '2017121237660', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jz', '图书', '354.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '379.00', '0', '', '1513089146', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513089146', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('728', '2018030910247', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1520566061', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520566061', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('570', '2018020114032', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '34.20', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.20', '0', '0.00', '0.00', '0.00', '0', '', '1517481404', '1517481404', '1517481404', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481404', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('729', '2018030943625', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '64.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '89.00', '0', '本站', '1520566087', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520566087', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('568', '2018020152435', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '51.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '76.30', '0', '0.00', '0.00', '0.00', '0', '', '1517481384', '1517481384', '1517481384', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481384', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('730', '2018030935438', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '42.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '67.00', '0', '本站', '1520574297', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520574297', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('565', '2018020198403', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '34.20', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.20', '0', '0.00', '0.00', '0.00', '0', '', '1517481354', '1517481354', '1517481354', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481354', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('563', '2018020137014', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '', '1517481326', '1517481326', '1517481326', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481326', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('426', '2017121586083', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '61.00', '0', '本站', '1513317670', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513317670', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('561', '2018020176812', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '64.60', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '89.60', '0', '0.00', '0.00', '0.00', '0', '', '1517481297', '1517481297', '1517481297', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481297', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('428', '2017121515337', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1513326360', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('429', '2017121945224', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '90.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '90.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513669164', '1513669165', '1513669165', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513669164', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('430', '2017121934689', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '90.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '90.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513669527', '1513669527', '1513669527', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513669527', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('431', '2017121953760', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '90.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '90.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513669587', '1513669587', '1513669587', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513669587', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('432', '2017121958894', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '90.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '90.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513669605', '1513669605', '1513669605', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513669605', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('433', '2017121911710', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '184.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '184.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513670233', '1513670234', '1513670234', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513670233', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('434', '2017121902329', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '184.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '184.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513670285', '1513670286', '1513670286', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513670285', '', '0', null, '1513835140', null);
INSERT INTO `ecs_order_info` VALUES ('559', '2018020111135', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '', '1517481268', '1517481268', '1517481268', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481268', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('439', '2017121919729', '0', '1', '0', '0', '0', '呵呵哒', '1', '2', '37', '403', '西二旗啊', '', '18211657935', '', '', '', '', '', '4', '中通速递', '0', '', '', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '80.00', '0', '管理员添加', '1513672789', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513672839', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('441', '2017121901670', '18', '5', '5', '2', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '测试啊哈', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '12312312', '图书', '336.30', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '336.30', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1513677286', '0', '1513678259', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513678274', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('442', '2017121972479', '57', '1', '0', '0', '1', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', 'heheda', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '123456jznihao', '图书', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '61.00', '0', '本站', '1513677390', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513677390', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('443', '2017121962874', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '订单备注测试啊', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '36.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '36.00', '0', '本站', '1513682809', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513682809', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('445', '2017121900355', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '', '', '', '', '', '', '', '图书', '80.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '105.00', '0', '管理员添加', '1513684391', '1513684488', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513684488', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('446', '2017121923212', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '我在进行测试,你好!', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '20.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '20.00', '0', '本站', '1513685404', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513685404', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('447', '2017121994396', '57', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗啊', '', '13718237477', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '24.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '24.00', '21', '本站', '1513688150', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1513688150', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('448', '2017122092844', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '237.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '237.00', '0', '管理员添加', '1513737876', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513738183', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('449', '2017122093915', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1513738207', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('450', '2017122053961', '18', '1', '0', '0', '0', '其味无穷1111', '1', '17', '199', '2080', '哈尔滨市哈频路269号', '', '18738220500', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '45.90', '0', '本站', '1513740626', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1513740626', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('451', '2017122043343', '0', '1', '0', '0', '1', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1513749057', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, '1513835140', null);
INSERT INTO `ecs_order_info` VALUES ('452', '2017122100590', '0', '1', '0', '0', '1', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1513823458', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, '1513834990', null);
INSERT INTO `ecs_order_info` VALUES ('453', '2017122194887', '1', '0', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '0', '', '标准 资料 复印', '123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '123.00', '0', '', '1513836194', '1513836194', '1513836194', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('454', '2017122118272', '3', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '', '', '13261579209', '13261579209', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '11111111111', '精琢', '标准 资料 复印', '123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '123.00', '0', '', '1513836194', '1513836194', '1513836194', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('455', '2017122122075', '18', '0', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '12312312', 'sadfadsf', '标准 资料 复印', '40.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '40.00', '0', '', '1513836195', '1513836195', '1513836195', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('456', '2017122697406', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '602.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '602.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514279712', '1514279712', '1514279712', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514279712', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('457', '2017122609891', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '94.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '119.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514279906', '1514279906', '1514279906', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514279906', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('458', '2017122696845', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '94.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '119.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280135', '1514280135', '1514280135', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280135', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('459', '2017122609676', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '94.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '119.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280173', '1514280173', '1514280173', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280173', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('460', '2017122661071', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '192.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '217.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280227', '1514280227', '1514280227', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280227', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('461', '2017122615820', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '192.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '217.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280240', '1514280240', '1514280240', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280240', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('462', '2017122698543', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280352', '1514280352', '1514280352', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280352', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('463', '2017122652172', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '96.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280431', '1514280431', '1514280431', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280431', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('464', '2017122628841', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '96.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280567', '1514280567', '1514280567', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280567', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('465', '2017122634751', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '47.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280747', '1514280747', '1514280747', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280747', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('466', '2017122691676', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '15263800300', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '79.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514280944', '1514280944', '1514280944', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514280944', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('467', '2017122694815', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '47.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514281237', '1514281237', '1514281237', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514281237', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('468', '2017122636242', '28', '1', '0', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '19.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514287605', '1514287605', '1514287605', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514287605', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('469', '2017122688852', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '3', 'EMS 国内邮政特快专递', '0', '', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '44.00', '0', '本站', '1514294040', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514294040', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('470', '2017122637370', '28', '1', '0', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '19.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514294119', '1514294119', '1514294119', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514294119', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('471', '2017122622850', '28', '1', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '0', '', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.00', '0', '本站', '1514294874', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514294874', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('472', '2017122600652', '28', '1', '1', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '19.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1514295965', '1516160544', '1516160544', '1516160564', '0', '0', '0', '111222333', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516160564', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('473', '2017122658409', '28', '2', '0', '0', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '0', '', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '19.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '19.00', '0', '本站', '1514296092', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516171074', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('474', '2017122713276', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '25.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1514343504', '1514343504', '1514343504', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514343504', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('556', '2018020196245', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '91.20', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '116.20', '0', '0.00', '0.00', '0.00', '0', '', '1517481228', '1517481229', '1517481229', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481228', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('476', '2017122742893', '28', '5', '2', '2', '0', '李金换', '1', '2', '37', '410', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '25.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1514356312', '0', '1516169219', '1516170362', '0', '0', '0', '3131231', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1516170395', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('477', '2017122711558', '1', '0', '0', '0', '0', '测试收货人', '1', '20', '240', '2469', '', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '0', '', '标准 资料 复印', '1123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1123.00', '0', '', '1514357126', '1514357126', '1514357126', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('478', '2017122702609', '3', '0', '0', '0', '0', '林瀚', '1', '3', '38', '424', '', '', '13261579209', '13261579209', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '11111111111', '精琢', '标准 资料 复印', '1123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1123.00', '0', '', '1514357127', '1514357127', '1514357127', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('479', '2017122721727', '2', '0', '0', '0', '0', '李狗蛋', '1', '14', '151', '1603', '', '', '17610270967', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '21323123', '啊啊', '标准 资料 复印', '1123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1123.00', '0', '', '1514357127', '1514357127', '1514357127', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('480', '2017122789782', '18', '0', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '12312312', 'sadfadsf', '标准 资料 复印', '1123.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1123.00', '0', '', '1514357128', '1514357128', '1514357128', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('483', '2018010355603', '49', '1', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '102.60', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '127.60', '0', '0.00', '0.00', '0.00', '0', '本站', '1514974172', '1514974172', '1514974172', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514974172', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('482', '2018010362857', '49', '0', '0', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '106.40', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '131.40', '0', '0.00', '0.00', '0.00', '0', '本站', '1514958189', '1514958189', '1514958189', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1514958189', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('501', '2018010855215', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '61.00', '0', '本站', '1515382789', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515382789', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('555', '2018020117709', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '163.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '188.30', '0', '0.00', '0.00', '0.00', '0', '', '1517481193', '1517481194', '1517481194', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481193', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('486', '2018010380681', '49', '3', '0', '0', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '4', '中通速递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '12321321', '天地撒', '图书', '188.10', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '213.10', '0', '本站', '1514974741', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1514977740', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('554', '2018020168932', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '163.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '188.30', '0', '0.00', '0.00', '0.00', '0', '', '1517481190', '1517481190', '1517481190', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481190', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('553', '2018012904615', '87', '1', '0', '0', '0', '林瀚', '0', '3', '38', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '96.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '121.00', '0', '本站', '1517195548', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517195548', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('552', '2018012944078', '87', '1', '0', '0', '0', '林瀚', '0', '3', '38', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '61.00', '0', '本站', '1517195223', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517195223', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('551', '2018012955478', '87', '1', '0', '0', '0', '林瀚', '0', '3', '38', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '96.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '121.00', '0', '本站', '1517195038', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517195038', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('495', '2018010570082', '49', '6', '5', '2', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1515132441', '1515132441', '1515132441', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515148155', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('496', '2018010508821', '49', '1', '0', '0', '0', '张无忌', '1', '16', '182', '1917', '中央大街', '', '18738220500', '', '', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '12321321', '天地撒', '图书', '228.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '253.00', '0', '本站', '1515134516', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515134516', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('497', '2018010559712', '57', '6', '4', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '114.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '139.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515158594', '1515158594', '1515158594', '1515158714', '0', '0', '0', '201801052125', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515158714', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('498', '2018010525386', '57', '5', '2', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '24.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '49.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515158795', '1515158795', '1515158795', '1515381080', '0', '0', '0', '964625729268', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515381080', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('550', '2018012953454', '87', '1', '0', '0', '0', '林瀚', '0', '3', '38', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '74.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '99.00', '0', '本站', '1517192403', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517192403', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('549', '2018012532517', '87', '1', '0', '2', '0', '林瀚', '0', '3', '38', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '3', 'EMS 国内邮政特快专递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '363.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '388.00', '0', '0.00', '0.00', '0.00', '0', '', '1516874109', '1516874109', '1516874109', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1516874158', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('502', '2018010893409', '59', '1', '0', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '38.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '43.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515383360', '1515383360', '1515383360', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '20.00', 'true', '1515383360', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('503', '2018010855857', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '61.00', '0', '本站', '1515383582', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515383582', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('504', '2018010870087', '59', '1', '0', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1515390121', '1515390121', '1515390121', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515390121', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('505', '2018010818162', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '61.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515390151', '1515390151', '1515390151', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390151', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('506', '2018010868825', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '19.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '44.00', '0', '本站', '1515390205', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390205', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('507', '2018010862315', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '45.90', '0', '本站', '1515390389', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390389', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('508', '2018010858935', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '136.80', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '161.80', '0', '本站', '1515390431', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390431', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('509', '2018010810030', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '19.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '44.00', '0', '本站', '1515390634', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390634', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('510', '2018010803651', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '95.30', '0', '本站', '1515390663', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390663', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('511', '2018010896413', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1515390876', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515390876', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('512', '2018010829943', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '79.00', '0', '本站', '1515391316', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515391316', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('513', '2018010869920', '59', '1', '0', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1515391440', '1515391440', '1515391440', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515391440', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('514', '2018010853076', '59', '1', '0', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0', '0.00', '0.00', '0.00', '0', '本站', '1515391453', '1515391453', '1515391453', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515391453', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('727', '2018030940503', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '18738220500', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1520565862', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520565862', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('582', '2018020570463', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '124.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '124.00', '0', '管理员添加', '1517819424', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517825460', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('576', '2018020244370', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '160.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '160.00', '0', '管理员添加', '1517562839', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517564535', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('577', '2018020504401', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '80.00', '0', '管理员添加', '1517798931', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517810296', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('517', '2018010807410', '59', '1', '0', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '19.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '44.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515391840', '1515391840', '1515391840', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515391840', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('579', '2018020533651', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.90', '0', '0.00', '0.00', '0.00', '0', '本站', '1517810236', '1517810236', '1517810236', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517810236', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('578', '2018020537828', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '80.00', '0', '管理员添加', '1517809630', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517809768', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('520', '2018010856810', '59', '1', '0', '0', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '336.30', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '336.30', '0', '本站', '1515392034', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515392034', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('521', '2018010838479', '57', '3', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '79.00', '0', '本站', '1515392701', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516005724', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('522', '2018010856320', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '79.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515393106', '1515393106', '1515393106', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515393106', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('573', '2018020288013', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '85.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '110.50', '0', '0.00', '0.00', '0.00', '0', '本站', '1517552513', '1517552513', '1517552513', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517552513', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('572', '2018020165008', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '34.20', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.20', '0', '0.00', '0.00', '0.00', '0', '', '1517481459', '1517481459', '1517481459', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481459', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('525', '2018010841810', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '93.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515393456', '1515393456', '1515393456', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515393456', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('526', '2018010897863', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '93.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515393589', '1515393589', '1515393589', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515393589', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('527', '2018010838540', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515393882', '1515393882', '1515393882', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515393882', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('528', '2018010847593', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515393913', '1515393913', '1515393913', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515393913', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('529', '2018010801665', '57', '1', '0', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515394260', '1515394260', '1515394260', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515394260', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('574', '2018020252219', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517562086', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('548', '2018012373208', '57', '1', '3', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '79.00', '0', '本站', '1516676289', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516676344', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('547', '2018012347193', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '79.00', '0', '本站', '1516675911', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516675911', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('534', '2018011152468', '17', '1', '0', '0', '0', '青春美少女哈哈', '1', '2', '37', '0', '青春美少女', '', '18301674039', '', '[email protected]', '', '', '', '1', '顺丰速运', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '144.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '169.00', '0', '本站', '1515641937', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1515643608', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('535', '2018011133081', '17', '1', '0', '0', '0', '青春美少女哈哈', '1', '2', '37', '0', '青春美少女', '', '18301674039', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '144.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '169.00', '0', '本站', '1515642109', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515642109', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('536', '2018011194914', '57', '1', '0', '0', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '20.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '20.00', '0', '本站', '1515654002', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1515654002', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('580', '2018020521607', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517810401', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517825885', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('538', '2018011171791', '59', '5', '5', '2', '0', '张无忌', '0', '17', '187', '0', '哈平路267号', '', '15263800300', '', '[email protected]', '', '', '', '4', '中通速递', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '7897987979', '精琢', '图书', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515655471', '0', '1516847054', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516847064', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('539', '2018011199195', '57', '1', '2', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '96.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1515671410', '1516158774', '1516158774', '1516013053', '0', '0', '0', '201801151844', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516158774', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('544', '2018011608073', '28', '5', '1', '2', '0', '李金换', '0', '2', '37', '0', '西二旗地铁站你好', '', '13718237477', '', '', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '0.00', '0', '本站', '1516083762', '1516083762', '1516083762', '1516175396', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1516175396', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('545', '2018011719999', '57', '1', '2', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '47.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1516173572', '1516173903', '1516173903', '1516173878', '0', '0', '0', '1213131231312', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516173903', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('546', '2018011782003', '57', '5', '2', '2', '0', '李金换', '0', '2', '37', '0', '西二旗啊', '', '13718237477', '', '', '', '', '', '3', 'EMS 国内邮政特快专递', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '42.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '67.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1516173983', '0', '1516174072', '1516174407', '0', '0', '0', '1111111111111111<br>2222222222222222', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1516174426', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('571', '2018020166714', '87', '1', '0', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '34.20', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '59.20', '0', '0.00', '0.00', '0.00', '0', '', '1517481433', '1517481433', '1517481433', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517481433', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('583', '2018020517674', '87', '2', '0', '0', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '0', '天地华宇', 'demo', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '45.90', '0', '', '1517819958', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '2', '0', '0.00', 'true', '1519783687', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('584', '2018020587834', '87', '1', '0', '0', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '0', '天地华宇', '图书', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '95.30', '0', '', '1517820068', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '1', '0', '0.00', 'true', '1519783511', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('585', '2018020567384', '87', '1', '0', '0', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', '天地华宇', '图书', '20.90', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '45.90', '0', '', '1517820619', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '1', '0', '0.00', 'true', '1519783471', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('587', '2018020548157', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517827374', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('725', '2018030982037', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '42.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '67.00', '0', '本站', '1520563567', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520563567', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('590', '2018020507292', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '80.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '80.00', '0', '管理员添加', '1517830084', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517830098', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('591', '2018020506424', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517830199', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('592', '2018020578864', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517830276', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517831392', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('593', '2018020515767', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517830344', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('594', '2018020530812', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517830555', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('595', '2018020543360', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1517830593', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('726', '2018030999682', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '64.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '89.00', '0', '本站', '1520563839', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520563839', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('724', '2018030801704', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '15263800300', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '图书', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '45.00', '0', '本站', '1520504567', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520504567', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('703', '2018030602143', '17', '1', '0', '2', '0', '青春美少女哈哈', '1', '2', '37', '0', '青春美少女', '', '18301674039', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '79.00', '0', '0.00', '0.00', '0.00', '0', '', '1520322259', '1520322259', '1520322259', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520322259', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('704', '2018030651940', '17', '5', '1', '2', '0', '青春美少女哈哈', '1', '2', '37', '0', '青春美少女', '', '18301674039', '', '[email protected]', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '5.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '5.00', '0', '0.00', '0.00', '0.00', '0', '', '1520324280', '1520324280', '1520324280', '1520406913', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520406913', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('717', '2018030776224', '89', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '12811.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12811.00', '0', '管理员添加', '1520415625', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520415633', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('718', '2018030702512', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '12811.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12811.00', '0', '管理员添加', '1520416223', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520416234', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('719', '2018030799223', '89', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '30.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '30.00', '0', '管理员添加', '1520416293', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520416301', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('720', '2018030818493', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '12811.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '12811.00', '0', '管理员添加', '1520495277', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520495287', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('721', '2018030803041', '95', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '30.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '30.00', '0', '管理员添加', '1520500083', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520500090', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('722', '2018030893153', '89', '1', '0', '0', '0', '林瀚', '1', '2', '37', '0', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '图书', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '管理员添加', '1520500112', '1520501000', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520502692', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('723', '2018030885052', '89', '1', '0', '2', '0', '张无忌', '1', '4', '41', '0', '哈平路267号', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '', '', '', '', '', '', '', '图书', '20.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '45.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1520502733', '1520502766', '1520502766', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520502778', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('694', '2018030509491', '94', '1', '3', '2', '0', '林瀚', '0', '2', '37', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '128010.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '128010.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520237424', '0', '1520237491', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520237491', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('693', '2018030527828', '87', '5', '1', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '121609.50', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121609.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520237352', '0', '1520237380', '1520237414', '0', '0', '0', '201803051610', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520237414', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('692', '2018030516320', '87', '5', '1', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '121609.50', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121609.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520237197', '0', '1520237220', '1520237269', '0', '0', '0', '201803051607', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520237269', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('691', '2018030599998', '87', '5', '5', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '88.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '113.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520236660', '0', '1520236702', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520236766', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('690', '2018030561545', '94', '5', '1', '2', '0', '林瀚', '0', '2', '37', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '90.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '90.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520236605', '0', '1520236625', '1520236642', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520236642', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('683', '2018030598445', '87', '5', '1', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '2', '上门取货', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '0.00', '0', '本站', '1520224071', '1520224071', '1520224071', '1520232714', '0', '0', '0', '201803051451', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520232714', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('689', '2018030581799', '87', '1', '3', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '121609.50', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '121609.50', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520236244', '0', '1520236277', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520236440', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('686', '2018030591157', '87', '5', '1', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '70.30', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '95.30', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520233329', '0', '1520233361', '1520233381', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520233382', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('716', '2018030799758', '95', '1', '0', '0', '0', '李狗蛋啊', '0', '14', '158', '0', '打算范德萨', '', '15263800300', '', '[email protected]', '', '', '', '2', '上门取货', '3', '支付宝', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '64.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '64.00', '0', '本站', '1520415558', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520415558', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('688', '2018030537043', '94', '5', '1', '2', '0', '林瀚', '0', '2', '37', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '2', '银行汇款/转帐', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '128222.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '128222.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1520236199', '0', '1520236311', '1520236333', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520236333', ' , ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('617', '2018020670774', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '30.00', '0', '0.00', '0.00', '49.00', '0', '本站', '1517915375', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517915375', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('618', '2018020694688', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '36.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '41.00', '0', '本站', '1517915454', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517915454', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('619', '2018020795337', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '50.00', '0', '0.00', '0.00', '29.00', '0', '本站', '1517969267', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969267', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('620', '2018020786512', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '50.00', '0', '0.00', '0.00', '29.00', '0', '本站', '1517969269', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969269', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('621', '2018020773876', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '50.00', '0', '0.00', '0.00', '29.00', '0', '本站', '1517969294', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969294', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('622', '2018020747807', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '50.00', '0', '0.00', '0.00', '29.00', '0', '本站', '1517969319', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969319', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('623', '2018020743331', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '50.00', '0', '0.00', '0.00', '29.00', '0', '本站', '1517969331', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969331', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('624', '2018020745116', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '73.00', '0', '本站', '1517969404', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969404', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('625', '2018020734702', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '73.00', '0', '本站', '1517969452', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969452', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('626', '2018020746837', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '73.00', '0', '本站', '1517969469', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969469', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('627', '2018020765607', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '108.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '93.00', '20.00', '0', '0.00', '0.00', '20.00', '0', '本站', '1517969539', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1518167828', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('628', '2018020775704', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '68.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '73.00', '0', '本站', '1517969573', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969573', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('629', '2018020743624', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '27.00', '0', '本站', '1517969647', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517969647', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('630', '2018020742003', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '295.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '280.00', '20.00', '0', '0.00', '0.00', '20.00', '0', '本站', '1517970194', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1518167643', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('631', '2018020772737', '89', '1', '0', '0', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '54.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00', '0', '0.00', '0.00', '59.00', '0', '本站', '1517970267', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1517970267', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('632', '2018020845259', '87', '5', '2', '2', '0', '林瀚', '0', '4', '39', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '4', '中通速递', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', '天地华宇', '图书', '19.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '44.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '本站', '1518068516', '0', '1518068606', '1518069544', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '1', '0', '0.00', 'true', '1519783352', ' ', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('679', '2018030514409', '94', '5', '2', '2', '0', '林瀚', '0', '2', '37', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1520220789', '1520220789', '1520220789', '1520232346', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520232364', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('678', '2018030514639', '87', '1', '0', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '2', '上门取货', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '0.00', '0', '本站', '1520220774', '1520220774', '1520220774', '0', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520220774', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('647', '2018022370383', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '233.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '233.00', '0', '管理员添加', '1519367938', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1519369331', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('645', '2018021260927', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1518416615', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('673', '2018030566404', '87', '1', '0', '2', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '2', '上门取货', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '0.00', '0', '本站', '1520219080', '1520219081', '1520219081', '0', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520219080', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('646', '2018022267914', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1519288964', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1519289094', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('677', '2018030553840', '94', '1', '0', '2', '0', '林瀚', '0', '2', '37', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1520220743', '1520220743', '1520220743', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520220743', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('676', '2018030542335', '94', '0', '0', '0', '0', '林瀚', '1', '2', '37', '404', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '25.00', '0', '本站', '1520220510', '0', '0', '0', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520220510', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('675', '2018030592877', '94', '0', '0', '0', '0', '林瀚', '1', '2', '37', '404', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '2', '0.00', '0.00', '25.00', '0', '本站', '1520220484', '0', '0', '0', '0', '0', '0', '', 'exchange_goods', '2', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520220484', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('674', '2018030530886', '87', '2', '0', '0', '0', 'lihuan', '0', '4', '39', '0', '哈尔滨', '', '13718237477', '', '[email protected]', '', '', '', '2', '上门取货', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '123456jz', 'jingzhuo', '图书', '20.90', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '20.90', '0', '本站', '1520219134', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1520229687', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('650', '2018022864814', '0', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '', '', '', '', '', '', '', '图书', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '25.00', '0', '管理员添加', '1519812634', '1519812771', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1519815266', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('672', '2018030554734', '94', '1', '0', '0', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '8', '到店支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '22.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '47.00', '0', '本站', '1520219003', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520219003', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('648', '2018022354310', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1519369587', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '0', null, '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('671', '2018030584933', '94', '1', '0', '0', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '354.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '379.00', '0', '本站', '1520218869', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520218869', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('651', '2018022860143', '89', '1', '0', '2', '0', '林瀚', '0', '2', '37', '0', '123123213123123', '', '13261579209', '', '[email protected]', '', '', '213', '2', '上门取货', '1', '余额支付', '', '', '', '', '', '123', '123', '图书', '129.20', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '129.20', '0', '0.00', '0.00', '0.00', '0', '本站', '1519812994', '1519812994', '1519812994', '0', '0', '0', '0', '', '', '0', '', '', '0', '纸质发票', '0.00', '0', '0', '0.00', 'true', '1519814203', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('670', '2018030533768', '94', '1', '0', '0', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '0', '', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '96.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '96.00', '0', '本站', '1520217576', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520217576', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('669', '2018030501179', '94', '1', '0', '2', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '2', '上门取货', '1', '余额支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '0.00', '0', '本站', '1520217451', '1520217451', '1520217451', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520217451', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('668', '2018030556505', '94', '1', '0', '0', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '25.00', '0', '本站', '1520217400', '0', '0', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520217400', '', '0', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('655', '2018022837965', '86', '1', '0', '2', '2', '林瀚', '1', '3', '38', '423', '哈平路267号', '', '13261579209', '', '[email protected]', '', '', '', '0', '', '0', '', '', '', '', '', '', '', '', '', '293.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '293.00', '0.00', '0', '0.00', '0.00', '0.00', '0', '管理员添加', '1519813179', '1519869845', '1519869845', '1519814804', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1519869845', null, '0', '123213', null, '1519814898');
INSERT INTO `ecs_order_info` VALUES ('656', '2018030134677', '3', '1', '0', '0', '0', '林瀚', '1', '3', '38', '424', '哈平路267号', '', '13718237477', '', '[email protected]', '', '', '', '1', '顺丰速运', '4', '货到付款', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '138.50', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '154.50', '0', '本站', '1519870908', '0', '0', '0', '0', '0', '0', '', '', '0', '', '', '0', '', '0.00', '0', '0', '9.00', 'true', '1504684404', '', '0', '', '0', '0');
INSERT INTO `ecs_order_info` VALUES ('663', '2018030129967', '3', '0', '0', '0', '0', '', '0', '0', '0', '0', '', '', '', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '11111111111', '精琢', '标准 资料 复印', '64.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '64.00', '0', '', '1519882192', '1519882192', '1519882192', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('664', '2018030100963', '2', '0', '0', '0', '0', '李狗蛋', '1', '14', '151', '1603', '', '', '17610270967', '', '[email protected]', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '21323123', '啊啊', '标准 资料 复印', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '10.00', '0', '', '1519882192', '1519882192', '1519882192', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('665', '2018030177335', '18', '0', '0', '0', '0', '其味无穷', '1', '17', '199', '2080', '', '', '15263800300', '', '', '', '', '', '1', '顺丰速运', '1', '余额支付', '0', '', '', '', '', '12312312', 'sadfadsf', '标准 资料 复印', '10.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '10.00', '0', '', '1519882193', '1519882193', '1519882193', '0', '0', '0', '0', '', '', '0', '', '', '0', '1', '0.00', '0', '0', '0.00', 'true', '0', null, '1', null, null, null);
INSERT INTO `ecs_order_info` VALUES ('667', '2018030513281', '94', '1', '0', '0', '0', '林瀚', '0', '16', '171', '0', '哈尔滨', '', '13261579209', '', '[email protected]', '', '', '', '1', '顺丰速运', '7', '微信支付', '等待所有商品备齐后再发', '', '', '', '', '', '', '', '0.00', '25.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '200', '0.00', '0.00', '25.00', '0', '本站', '1520217325', '0', '0', '0', '0', '0', '0', '', 'exchange_goods', '7', '', '', '0', '', '0.00', '0', '0', '0.00', 'true', '1520217325', '', '0', null, null, null);
DROP TRIGGER IF EXISTS `ecs_order_info_after_insert`;
DELIMITER ;;
CREATE TRIGGER `ecs_order_info_after_insert` AFTER INSERT ON `ecs_order_info` FOR EACH ROW BEGIN
   /********************************************/
   /*处理说明:用户表 新增后,同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_order_info_log 
	(
              log_id,
              order_id,
              order_sn,
              user_id,
              order_status,
              shipping_status,
              pay_status,
              invoice_status,
              consignee,
              country,
              province,
              city,
              district,
              address,
              zipcode,
              tel,
              mobile,
              email,
              best_time,
              sign_building,
              postscript,
              shipping_id,
              shipping_name,
              pay_id,
              pay_name,
              how_oos,
              how_surplus,
              pack_name,
              card_name,
              card_message,
              inv_payee_number,
              inv_payee,
              inv_content,
              goods_amount,
              shipping_fee,
              insure_fee,
              pay_fee,
              pack_fee,
              card_fee,
              goods_discount_fee,
              money_paid,
              surplus,
              integral,
              integral_money,
              bonus,
              order_amount,
              from_ad,
              referer,
              add_time,
              confirm_time,
              pay_time,
              shipping_time,
              pack_id,
              card_id,
              bonus_id,
              invoice_no,
              extension_code,
              extension_id,
              to_buyer,
              pay_note,
              agency_id,
              inv_type,
              tax,
              is_separate,
              parent_id,
              discount,
              callback_status,
              lastmodify,
              search_words,
              is_replace_order,
              re_invoice_no,
              invoice_time,
              reinvoice_time,
              log_kind,
              log_time
               )
	VALUES
	(NULL,
	new.order_id,
	new.order_sn,
	new.user_id,
	new.order_status,
	new.shipping_status,
	new.pay_status,
	new.invoice_status,
	new.consignee,
	new.country,
	new.province,
	new.city,
	new.district,
	new.address,
	new.zipcode,
	new.tel,
	new.mobile,
	new.email,
	new.best_time,
	new.sign_building,
	new.postscript,
	new.shipping_id,
	new.shipping_name,
	new.pay_id,
	new.pay_name,
	new.how_oos,
	new.how_surplus,
	new.pack_name,
	new.card_name,
	new.card_message,
	new.inv_payee_number,
	new.inv_payee,
	new.inv_content,
	new.goods_amount,
	new.shipping_fee,
	new.insure_fee,
	new.pay_fee,
	new.pack_fee,
	new.card_fee,
	new.goods_discount_fee,
	new.money_paid,
	new.surplus,
	new.integral,
	new.integral_money,
	new.bonus,
	new.order_amount,
	new.from_ad,
	new.referer,
	new.add_time,
	new.confirm_time,
	new.pay_time,
	new.shipping_time,
	new.pack_id,
	new.card_id,
	new.bonus_id,
	new.invoice_no,
	new.extension_code,
	new.extension_id,
	new.to_buyer,
	new.pay_note,
	new.agency_id,
	new.inv_type,
	new.tax,
	new.is_separate,
	new.parent_id,
	new.discount,
	new.callback_status,
	new.lastmodify,
	new.search_words,
	new.is_replace_order,
	new.re_invoice_no,
	new.invoice_time,
	new.reinvoice_time,
	'插入', 
	NOW()
	);		
    END
;;
DELIMITER ;
DROP TRIGGER IF EXISTS `ecs_order_info_after_update`;
DELIMITER ;;
CREATE TRIGGER `ecs_order_info_after_update` AFTER UPDATE ON `ecs_order_info` FOR EACH ROW BEGIN
    /********************************************/
   /*处理说明:用户表 更新后,更新前后的数据同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_order_info_log 
	( log_id,
              order_id,
              order_sn,
              user_id,
              order_status,
              shipping_status,
              pay_status,
              invoice_status,
              consignee,
              country,
              province,
              city,
              district,
              address,
              zipcode,
              tel,
              mobile,
              email,
              best_time,
              sign_building,
              postscript,
              shipping_id,
              shipping_name,
              pay_id,
              pay_name,
              how_oos,
              how_surplus,
              pack_name,
              card_name,
              card_message,
              inv_payee_number,
              inv_payee,
              inv_content,
              goods_amount,
              shipping_fee,
              insure_fee,
              pay_fee,
              pack_fee,
              card_fee,
              goods_discount_fee,
              money_paid,
              surplus,
              integral,
              integral_money,
              bonus,
              order_amount,
              from_ad,
              referer,
              add_time,
              confirm_time,
              pay_time,
              shipping_time,
              pack_id,
              card_id,
              bonus_id,
              invoice_no,
              extension_code,
              extension_id,
              to_buyer,
              pay_note,
              agency_id,
              inv_type,
              tax,
              is_separate,
              parent_id,
              discount,
              callback_status,
              lastmodify,
              search_words,
              is_replace_order,
              re_invoice_no,
              invoice_time,
              reinvoice_time,
              log_kind,
              log_time
	)
	VALUES
	(NULL,
	old.order_id,
	old.order_sn,
	old.user_id,
	old.order_status,
	old.shipping_status,
	old.pay_status,
	old.invoice_status,
	old.consignee,
	old.country,
	old.province,
	old.city,
	old.district,
	old.address,
	old.zipcode,
	old.tel,
	old.mobile,
	old.email,
	old.best_time,
	old.sign_building,
	old.postscript,
	old.shipping_id,
	old.shipping_name,
	old.pay_id,
	old.pay_name,
	old.how_oos,
	old.how_surplus,
	old.pack_name,
	old.card_name,
	old.card_message,
	old.inv_payee_number,
	old.inv_payee,
	old.inv_content,
	old.goods_amount,
	old.shipping_fee,
	old.insure_fee,
	old.pay_fee,
	old.pack_fee,
	old.card_fee,
	old.goods_discount_fee,
	old.money_paid,
	old.surplus,
	old.integral,
	old.integral_money,
	old.bonus,
	old.order_amount,
	old.from_ad,
	old.referer,
	old.add_time,
	old.confirm_time,
	old.pay_time,
	old.shipping_time,
	old.pack_id,
	old.card_id,
	old.bonus_id,
	old.invoice_no,
	old.extension_code,
	old.extension_id,
	old.to_buyer,
	old.pay_note,
	old.agency_id,
	old.inv_type,
	old.tax,
	old.is_separate,
	old.parent_id,
	old.discount,
	old.callback_status,
	old.lastmodify,
	old.search_words,
	old.is_replace_order,
	old.re_invoice_no,
	old.invoice_time,
	old.reinvoice_time,
	'更新前', 
	NOW()
	);		
	
   INSERT INTO ecs_order_info_log 
	(
	 log_id,
              order_id,
              order_sn,
              user_id,
              order_status,
              shipping_status,
              pay_status,
              invoice_status,
              consignee,
              country,
              province,
              city,
              district,
              address,
              zipcode,
              tel,
              mobile,
              email,
              best_time,
              sign_building,
              postscript,
              shipping_id,
              shipping_name,
              pay_id,
              pay_name,
              how_oos,
              how_surplus,
              pack_name,
              card_name,
              card_message,
              inv_payee_number,
              inv_payee,
              inv_content,
              goods_amount,
              shipping_fee,
              insure_fee,
              pay_fee,
              pack_fee,
              card_fee,
              goods_discount_fee,
              money_paid,
              surplus,
              integral,
              integral_money,
              bonus,
              order_amount,
              from_ad,
              referer,
              add_time,
              confirm_time,
              pay_time,
              shipping_time,
              pack_id,
              card_id,
              bonus_id,
              invoice_no,
              extension_code,
              extension_id,
              to_buyer,
              pay_note,
              agency_id,
              inv_type,
              tax,
              is_separate,
              parent_id,
              discount,
              callback_status,
              lastmodify,
              search_words,
              is_replace_order,
              re_invoice_no,
              invoice_time,
              reinvoice_time,
              log_kind,
              log_time
	)
	VALUES
	(NULL,
	new.order_id,
	new.order_sn,
	new.user_id,
	new.order_status,
	new.shipping_status,
	new.pay_status,
	new.invoice_status,
	new.consignee,
	new.country,
	new.province,
	new.city,
	new.district,
	new.address,
	new.zipcode,
	new.tel,
	new.mobile,
	new.email,
	new.best_time,
	new.sign_building,
	new.postscript,
	new.shipping_id,
	new.shipping_name,
	new.pay_id,
	new.pay_name,
	new.how_oos,
	new.how_surplus,
	new.pack_name,
	new.card_name,
	new.card_message,
	new.inv_payee_number,
	new.inv_payee,
	new.inv_content,
	new.goods_amount,
	new.shipping_fee,
	new.insure_fee,
	new.pay_fee,
	new.pack_fee,
	new.card_fee,
	new.goods_discount_fee,
	new.money_paid,
	new.surplus,
	new.integral,
	new.integral_money,
	new.bonus,
	new.order_amount,
	new.from_ad,
	new.referer,
	new.add_time,
	new.confirm_time,
	new.pay_time,
	new.shipping_time,
	new.pack_id,
	new.card_id,
	new.bonus_id,
	new.invoice_no,
	new.extension_code,
	new.extension_id,
	new.to_buyer,
	new.pay_note,
	new.agency_id,
	new.inv_type,
	new.tax,
	new.is_separate,
	new.parent_id,
	new.discount,
	new.callback_status,
	new.lastmodify,
	new.search_words,
	new.is_replace_order,
	new.re_invoice_no,
	new.invoice_time,
	new.reinvoice_time,
	'更新后', 
	NOW()
	);		
	
    END
;;
DELIMITER ;
DROP TRIGGER IF EXISTS `ecs_order_info_after_delete`;
DELIMITER ;;
CREATE TRIGGER `ecs_order_info_after_delete` AFTER DELETE ON `ecs_order_info` FOR EACH ROW BEGIN
   /********************************************/
   /*处理说明:用户表 删除后,更新前后的数据同步到用户Log表的触发器*/
   /********************************************/
   INSERT INTO ecs_order_info_log 
	( log_id,
              order_id,
              order_sn,
              user_id,
              order_status,
              shipping_status,
              pay_status,
              invoice_status,
              consignee,
              country,
              province,
              city,
              district,
              address,
              zipcode,
              tel,
              mobile,
              email,
              best_time,
              sign_building,
              postscript,
              shipping_id,
              shipping_name,
              pay_id,
              pay_name,
              how_oos,
              how_surplus,
              pack_name,
              card_name,
              card_message,
              inv_payee_number,
              inv_payee,
              inv_content,
              goods_amount,
              shipping_fee,
              insure_fee,
              pay_fee,
              pack_fee,
              card_fee,
              goods_discount_fee,
              money_paid,
              surplus,
              integral,
              integral_money,
              bonus,
              order_amount,
              from_ad,
              referer,
              add_time,
              confirm_time,
              pay_time,
              shipping_time,
              pack_id,
              card_id,
              bonus_id,
              invoice_no,
              extension_code,
              extension_id,
              to_buyer,
              pay_note,
              agency_id,
              inv_type,
              tax,
              is_separate,
              parent_id,
              discount,
              callback_status,
              lastmodify,
              search_words,
              is_replace_order,
              re_invoice_no,
              invoice_time,
              reinvoice_time,
              log_kind,
              log_time
	)
	VALUES
	(NULL,
	old.order_id,
	old.order_sn,
	old.user_id,
	old.order_status,
	old.shipping_status,
	old.pay_status,
	old.invoice_status,
	old.consignee,
	old.country,
	old.province,
	old.city,
	old.district,
	old.address,
	old.zipcode,
	old.tel,
	old.mobile,
	old.email,
	old.best_time,
	old.sign_building,
	old.postscript,
	old.shipping_id,
	old.shipping_name,
	old.pay_id,
	old.pay_name,
	old.how_oos,
	old.how_surplus,
	old.pack_name,
	old.card_name,
	old.card_message,
	old.inv_payee_number,
	old.inv_payee,
	old.inv_content,
	old.goods_amount,
	old.shipping_fee,
	old.insure_fee,
	old.pay_fee,
	old.pack_fee,
	old.card_fee,
	old.goods_discount_fee,
	old.money_paid,
	old.surplus,
	old.integral,
	old.integral_money,
	old.bonus,
	old.order_amount,
	old.from_ad,
	old.referer,
	old.add_time,
	old.confirm_time,
	old.pay_time,
	old.shipping_time,
	old.pack_id,
	old.card_id,
	old.bonus_id,
	old.invoice_no,
	old.extension_code,
	old.extension_id,
	old.to_buyer,
	old.pay_note,
	old.agency_id,
	old.inv_type,
	old.tax,
	old.is_separate,
	old.parent_id,
	old.discount,
	old.callback_status,
	old.lastmodify,
	old.search_words,
	old.is_replace_order,
	old.re_invoice_no,
	old.invoice_time,
	old.reinvoice_time,
	'删除前', 
	NOW()
	);		
	
    END
;;
DELIMITER ;

注意:表结构数据及sql直接复制运行即可

猜你喜欢

转载自blog.csdn.net/semial/article/details/79712899