|  | @@ -37,3 +37,9 @@ INSERT INTO `sys_job`( `job_name`, `job_group`, `invoke_target`, `cron_expressio
 | 
	
		
			
				|  |  |  -- 安全检查每天更新状态
 | 
	
		
			
				|  |  |  delete from `sys_job` where invoke_target like 'CoreSafetyCheckTask.updateTaskStatus%';
 | 
	
		
			
				|  |  |  INSERT INTO `sys_job`( `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ( '安全检查更新任务状态', 'DEFAULT', 'CoreSafetyCheckTask.updateTaskStatus', '1 1 0 * * ?', '1', '1', '0', '省联社账号', '2023-10-27 15:26:47', '', NULL);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +-- 同步FJNX 机构、用户
 | 
	
		
			
				|  |  | +delete from `sys_job` where invoke_target like 'SyncFjnxOrgUserTask.syncFjnxOrg%';
 | 
	
		
			
				|  |  | +delete from `sys_job` where invoke_target like 'SyncFjnxOrgUserTask.syncFjnxUser%';
 | 
	
		
			
				|  |  | +INSERT INTO `sys_job` (`job_id`, `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, '同步FJNX机构', 'DEFAULT', 'SyncFjnxOrgUserTask.syncFjnxOrg', '0 0 1 * * ?', '1', '1', '0', '超级管理员', '2023-10-30 11:16:40', '超级管理员', '2023-10-30 11:17:41');
 | 
	
		
			
				|  |  | +INSERT INTO `sys_job` (`job_id`, `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (209, '同步FJNX用户', 'DEFAULT', 'SyncFjnxOrgUserTask.syncFjnxUser', '0 0 2 * * ?', '1', '1', '0', '超级管理员', '2023-10-30 11:17:37', '', NULL);
 |