| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 
- <mapper namespace="com.ym.mec.biz.dal.dao.TenantPreJoinDao">
 
-     <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.TenantPreJoin">
 
-         <id column="id_" jdbcType="INTEGER" property="id"/>
 
-         <result column="tsign_name_" jdbcType="VARCHAR" property="tsignName"/>
 
-         <result column="name_" jdbcType="VARCHAR" property="name"/>
 
-         <result column="area_id_" jdbcType="INTEGER" property="areaId"/>
 
-         <result column="area_name_" jdbcType="VARCHAR" property="areaName"/>
 
-         <result column="email_" jdbcType="VARCHAR" property="email"/>
 
-         <result column="customer_service_phone_" jdbcType="VARCHAR" property="customerServicePhone"/>
 
-         <result column="tsign_code_" jdbcType="VARCHAR" property="tsignCode"/>
 
-         <result column="address_" jdbcType="VARCHAR" property="address"/>
 
-         <result column="remark_" jdbcType="VARCHAR" property="remark"/>
 
-         <result column="enterprise_liable_name_" jdbcType="VARCHAR" property="enterpriseLiableName"/>
 
-         <result column="enterprise_liable_phone_" jdbcType="VARCHAR" property="enterpriseLiablePhone"/>
 
-         <result column="legal_person_id_front_pic_" jdbcType="VARCHAR" property="legalPersonIdFrontPic"/>
 
-         <result column="legal_person_id_reverse_pic_" jdbcType="VARCHAR" property="legalPersonIdReversePic"/>
 
-         <result column="contacts_" jdbcType="VARCHAR" property="contacts"/>
 
-         <result column="phone_" jdbcType="VARCHAR" property="phone"/>
 
-         <result column="tsign_pic_" jdbcType="VARCHAR" property="tsignPic"/>
 
-         <result column="tax_register_pic_" jdbcType="VARCHAR" property="taxRegisterPic"/>
 
-         <result column="company_account_info_pic_" jdbcType="VARCHAR" property="companyAccountInfoPic"/>
 
-         <result column="logo_" jdbcType="VARCHAR" property="logo"/>
 
-         <result column="corporate_chops_" jdbcType="VARCHAR" property="corporateChops"/>
 
-         <result column="corporate_finance_chops_" jdbcType="VARCHAR" property="corporateFinanceChops"/>
 
-         <result column="state_" jdbcType="INTEGER" property="state"/>
 
-         <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime"/>
 
-         <result column="province_id_" jdbcType="INTEGER" property="provinceId"/>
 
-         <result column="province_name_" jdbcType="VARCHAR" property="provinceName"/>
 
-     </resultMap>
 
-     <sql id="Base_Column_List">
 
-         id_
 
-         , tsign_name_, name_, area_id_, area_name_, email_, customer_service_phone_
 
-         , tsign_code_, address_, remark_, enterprise_liable_name_, enterprise_liable_phone_, legal_person_id_front_pic_
 
-         , legal_person_id_reverse_pic_, contacts_, phone_, tsign_pic_, tax_register_pic_, company_account_info_pic_
 
-         , logo_, corporate_chops_, corporate_finance_chops_, state_, created_time_, province_id_, province_name_
 
-     </sql>
 
-     <insert id="insertBatch" keyColumn="id_" keyProperty="id" useGeneratedKeys="true"
 
-             parameterType="com.ym.mec.biz.dal.entity.TenantPreJoin">
 
-         insert into tenant_pre_join(tsign_name_, name_, area_id_, area_name_, email_, customer_service_phone_,
 
-         tsign_code_, address_, remark_, enterprise_liable_name_, enterprise_liable_phone_, legal_person_id_front_pic_,
 
-         legal_person_id_reverse_pic_, contacts_, phone_, tsign_pic_, tax_register_pic_, company_account_info_pic_,
 
-         logo_, corporate_chops_, corporate_finance_chops_, state_, created_time_, province_id_, province_name_)
 
-         values
 
-         <foreach collection="entities" item="entity" separator=",">
 
-             (#{entity.tsignName}, #{entity.name}, #{entity.areaId}, #{entity.areaName}, #{entity.email},
 
-             #{entity.customerServicePhone}, #{entity.tsignCode}, #{entity.address}, #{entity.remark},
 
-             #{entity.enterpriseLiableName}, #{entity.enterpriseLiablePhone}, #{entity.legalPersonIdFrontPic},
 
-             #{entity.legalPersonIdReversePic}, #{entity.contacts}, #{entity.phone}, #{entity.tsignPic},
 
-             #{entity.taxRegisterPic}, #{entity.companyAccountInfoPic}, #{entity.logo}, #{entity.corporateChops},
 
-             #{entity.corporateFinanceChops}, #{entity.state}, #{entity.createdTime}, #{entity.provinceId},
 
-             #{entity.provinceName})
 
-         </foreach>
 
-     </insert>
 
- </mapper>
 
 
  |