```
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for ypt_weixin_menu
-- ----------------------------
DROP TABLE IF EXISTS `ypt_weixin_menu`;
CREATE TABLE `ypt_weixin_menu` (
`menu_id` int(11) NOT NULL AUTO_INCREMENT,
`menu_name` varchar(30) DEFAULT '' COMMENT '菜单名',
`menu_key` varchar(30) DEFAULT '' COMMENT '关键词',
`menu_url` varchar(255) DEFAULT '' COMMENT '地址',
`menu_order` int(11) NOT NULL DEFAULT '50' COMMENT '排序',
`menu_pid` int(11) NOT NULL DEFAULT '0' COMMENT '父类',
`menu_type` varchar(30) DEFAULT '' COMMENT '内容类型:1 URL地址(view), 2关键词(click)',
PRIMARY KEY (`menu_id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of ypt_weixin_menu
-- ----------------------------
INSERT INTO `ypt_weixin_menu` VALUES ('17', '菜单2', '', 'http://www.shendouyou.com', '50', '0', 'view');
INSERT INTO `ypt_weixin_menu` VALUES ('16', '菜单1', '11111', '', '50', '0', 'click');
INSERT INTO `ypt_weixin_menu` VALUES ('18', '菜单3', '关键词3', null, '50', '0', 'click');
```