CREATE TABLE `充值项表` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`chargeMoney` int(11) DEFAULT '0',
`giveMony` decimal(11,1) DEFAULT NULL,
`itemSort` int(11) DEFAULT '0',
`dataFlag` tinyint(4) DEFAULT '1',
`createTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='充值项表-贾晨凯';