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