1
2
3
4
5
6
7
8
9
  | -- save waitPakinRule record  
 |  -- mysql  
 |  insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `host_id`, `status`) values ( '组托规则管理', '0', '/asrs/waitPakinRule', '/asrs/waitPakinRule', '0' , '0', '1' , '1');  
 |    
 |  insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `host_id`, `status`) values ( '查询组托规则', '', '1', 'asrs:waitPakinRule:list', '0', '1', '1');  
 |  insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `host_id`, `status`) values ( '添加组托规则', '', '1', 'asrs:waitPakinRule:save', '1', '1', '1');  
 |  insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `host_id`, `status`) values ( '修改组托规则', '', '1', 'asrs:waitPakinRule:update', '2', '1', '1');  
 |  insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `host_id`, `status`) values ( '删除组托规则', '', '1', 'asrs:waitPakinRule:remove', '3', '1', '1');  
 |    
 |  
  |