|  | @@ -11,21 +11,24 @@
 | 
	
		
			
				|  |  |          <result column="config_" jdbcType="VARCHAR" property="config"/>
 | 
	
		
			
				|  |  |          <result column="updated_by_" jdbcType="INTEGER" property="updatedBy"/>
 | 
	
		
			
				|  |  |          <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime"/>
 | 
	
		
			
				|  |  | +        <result column="corporate_chops_" jdbcType="VARCHAR" property="corporateChops"/>
 | 
	
		
			
				|  |  | +        <result column="corporate_finance_chops_" jdbcType="VARCHAR" property="corporateFinanceChops"/>
 | 
	
		
			
				|  |  |      </resultMap>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <sql id="Base_Column_List">
 | 
	
		
			
				|  |  |          id_
 | 
	
		
			
				|  |  | -        , tenant_id_, charge_rate_, teaching_material_id_, theme_, theme_color_, config_, updated_by_, updated_time_
 | 
	
		
			
				|  |  | +        , tenant_id_, charge_rate_, teaching_material_id_, theme_, theme_color_, config_, updated_by_, updated_time_, corporate_chops_, corporate_finance_chops_
 | 
	
		
			
				|  |  |      </sql>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <insert id="insertBatch" keyColumn="id_" keyProperty="id" useGeneratedKeys="true"
 | 
	
		
			
				|  |  |              parameterType="com.ym.mec.biz.dal.entity.TenantConfig">
 | 
	
		
			
				|  |  |          insert into tenant_config(tenant_id_, charge_rate_, teaching_material_id_, theme_, theme_color_, config_,
 | 
	
		
			
				|  |  | -        updated_by_, updated_time_)
 | 
	
		
			
				|  |  | +        updated_by_, updated_time_, corporate_chops_, corporate_finance_chops_)
 | 
	
		
			
				|  |  |          values
 | 
	
		
			
				|  |  |          <foreach collection="entities" item="entity" separator=",">
 | 
	
		
			
				|  |  |              (#{entity.tenantId}, #{entity.chargeRate}, #{entity.teachingMaterialId}, #{entity.theme},
 | 
	
		
			
				|  |  | -            #{entity.themeColor}, #{entity.config}, #{entity.updatedBy}, #{entity.updatedTime})
 | 
	
		
			
				|  |  | +            #{entity.themeColor}, #{entity.config}, #{entity.updatedBy}, #{entity.updatedTime},
 | 
	
		
			
				|  |  | +            #{entity.corporateChops}, #{entity.corporateFinanceChops})
 | 
	
		
			
				|  |  |          </foreach>
 | 
	
		
			
				|  |  |      </insert>
 | 
	
		
			
				|  |  |  
 |