```
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');
```