| 
					
				 | 
			
			
				@@ -21,6 +21,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		<result property="status"         column="status"         /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		<result property="errorMsg"       column="error_msg"      /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		<result property="operTime"       column="oper_time"      /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		<result property="deptId"         column="dept_id"        /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		<result property="tenantId"       column="tenant_id"      /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	</resultMap> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	<sql id="selectOperLogVo"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -29,8 +31,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </sql> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	<insert id="insertOperlog" parameterType="com.usky.system.domain.SysOperLog"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-		insert into sys_oper_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, sysdate()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		insert into sys_oper_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time, dept_id, tenant_id) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, sysdate(), #{deptId}, #{tenantId}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	</insert> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	<select id="selectOperLogList" parameterType="com.usky.system.domain.SysOperLog" resultMap="SysOperLogResult"> 
			 |