15 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			MySQL
		
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			MySQL
		
	
|  | INSERT INTO `la_system_auth_menu` (`pid`, `menu_type`, `menu_name`, `menu_icon`, `menu_sort`, `perms`, `paths`, `component`, `selected`, `params`, `is_cache`, `is_show`, `is_disable`, `create_time`, `update_time`) VALUES (770, 'C', '师傅端用户列表', '', 2, '', 'staffUserList', 'master_worker/userList/index', '', '', 1, 1, 0, 1703130336, 1703130479);
 | ||
|  | 
 | ||
|  | UPDATE `la_system_auth_menu` SET `pid` = 712, `menu_type` = 'C', `menu_name` = '用户端用户列表', `menu_icon` = '', `menu_sort` = 1, `perms` = '', `paths` = 'userList', `component` = 'user/userList/index', `selected` = '', `params` = '', `is_cache` = 0, `is_show` = 1, `is_disable` = 0, `create_time` = 1669631222, `update_time` = 1703130269 WHERE `component` = 'user/userList/index';
 | ||
|  | #增加积分
 | ||
|  | ALTER TABLE `la_user`
 | ||
|  |     ADD COLUMN `integral` int(10) NULL DEFAULT 0 COMMENT '消费积分' AFTER `bind_time`;
 | ||
|  | 
 | ||
|  | ALTER TABLE `la_goods`
 | ||
|  |     ADD COLUMN `integral` int(10) NULL DEFAULT 0 COMMENT '服务积分' AFTER `goods_time_id`;
 | ||
|  | 
 | ||
|  | ALTER TABLE `la_order_goods`
 | ||
|  |     ADD COLUMN `integral` int(10) NULL DEFAULT 0 COMMENT '服务积分' AFTER `delete_time`;
 | ||
|  | 
 | ||
|  | 
 |