| 
					
				 | 
			
			
				@@ -19,7 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </resultMap> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <sql id="selectFsCourseTrafficLogVo"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        select log_id, uu_id,user_id, video_id, create_time, qw_external_contact_id, internet_traffic, qw_user_id, company_user_id, company_id, course_id from fs_course_traffic_log 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        select log_id, uu_id,user_id, video_id, create_time, qw_external_contact_id, internet_traffic, qw_user_id, company_user_id, company_id, course_id, project from fs_course_traffic_log 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </sql> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <select id="selectFsCourseTrafficLogList" parameterType="FsCourseTrafficLog" resultMap="FsCourseTrafficLogResult"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -54,6 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="companyId != null">company_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="courseId != null">course_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="uuId != null">uu_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="project != null">project,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				          </trim> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <trim prefix="values (" suffix=")" suffixOverrides=","> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="userId != null">#{userId},</if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -66,6 +67,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="companyId != null">#{companyId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="courseId != null">#{courseId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="uuId != null">#{uuId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="project != null">#{project},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				          </trim> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </insert> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -82,6 +84,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="companyId != null">company_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="courseId != null">course_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="uuId != null">uu_id,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="project != null">project,</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </trim> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <trim prefix="values (" suffix=")" suffixOverrides=","> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="userId != null">#{userId},</if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -94,6 +97,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="companyId != null">#{companyId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="courseId != null">#{courseId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="uuId != null">#{uuId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="project != null">#{project},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </trim> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         on duplicate key update 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <trim suffixOverrides=","> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -114,6 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="companyId != null">company_id = #{companyId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="courseId != null">course_id = #{courseId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="uuId != null">uu_id = #{uuId},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="project != null">project = #{project},</if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </trim> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         where log_id = #{logId} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </update> 
			 |