#
# 表的结构 `saving`
#CREATE TABLE `saving` (
  `id` int(11) NOT NULL auto_increment,
  `money` int(11) NOT NULL,
  `type` char(6) default NULL,
  `time` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`id`),
  KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;#
# 导出表中的数据 `saving`
#INSERT INTO `saving` (`id`, `money`, `type`, `time`) VALUES (1, 10, '续费', '2011-02-10 12:00:00'),
(2, 12, '续费', '2011-02-12 23:00:00'),
(3, 12, '续费', '2011-03-10 23:00:00'),
(4, 5, '续费', '2011-04-10 00:00:00'),
(5, 6, '保证金', '2011-04-12 23:00:00');# --------------------------------------------------------#
# 表的结构 `ti`
#CREATE TABLE `ti` (
  `id` int(11) NOT NULL auto_increment,
  `ti_money` int(11) NOT NULL,
  `ti_ya_money` int(11) NOT NULL,
  `dateTime` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`id`),
  KEY `ti_money` (`ti_money`,`ti_ya_money`,`dateTime`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;#
# 导出表中的数据 `ti`
#INSERT INTO `ti` (`id`, `ti_money`, `ti_ya_money`, `dateTime`) 
VALUES (1, 10, 0, '2011-02-10 12:00:00'),
(2, 0, 2, '2011-03-11 15:00:00'),
(3, 5, 6, '2011-05-10 00:00:00');时间----------续费(元)----续费笔数------保证金(元)-----保证金笔数-----退款金额(元)-----退款次数-----退款压金(元)------退款压金笔数2011-02 ------- 22-----------2--------------0-----------------0------------10----------------1-------------0----------------0
2011-03 ------- 12-----------1--------------0-----------------0------------0-----------------0-------------2----------------1
2011-04 ------- 5 -----------1--------------6-----------------1------------0-----------------0-------------0----------------0
2011-05 ------- 0 -----------0--------------0-----------------0------------5-----------------1-------------6----------------1