# promote **Repository Path**: ervino/promote ## Basic Information - **Project Name**: promote - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-05-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 版本更新记录 新增 weixinno_menu.sql -- 菜单SQL INSERT INTO `sys_menu` (`parent_id`, `name`, `url`, `perms`, `type`, `icon`, `order_num`) VALUES ('1', '', 'modules/api/weixinno.html', NULL, '1', 'fa fa-file-code-o', '6'); -- 按钮父菜单ID set @parentId = @@identity; -- 菜单对应按钮SQL INSERT INTO `sys_menu` (`parent_id`, `name`, `url`, `perms`, `type`, `icon`, `order_num`) SELECT @parentId, '查看', null, 'api:weixinno:list,api:weixinno:info', '2', null, '6'; INSERT INTO `sys_menu` (`parent_id`, `name`, `url`, `perms`, `type`, `icon`, `order_num`) SELECT @parentId, '新增', null, 'api:weixinno:save', '2', null, '6'; INSERT INTO `sys_menu` (`parent_id`, `name`, `url`, `perms`, `type`, `icon`, `order_num`) SELECT @parentId, '修改', null, 'api:weixinno:update', '2', null, '6'; INSERT INTO `sys_menu` (`parent_id`, `name`, `url`, `perms`, `type`, `icon`, `order_num`) SELECT @parentId, '删除', null, 'api:weixinno:delete', '2', null, '6'; # 新增刷新导入链接,以及管理员使用的接口 复制url 示例:http://localhost:8080/api/weixinno/copyUrl?urls=http://hx.ngzuo.top/4/weixin4-pc5.html&dnsid=1&path=360/21/&counts=5 urls: 需要复制的链接 dnsid: 导入的域名id path: 在该域名下的路径(不可重复) counts: 复制的url数量