anderx лет назад: 4
Родитель
Сommit
b7d0668673

+ 0 - 252
src/main/java/com/goafanti/common/mapper/PatentCostMapper.xml

@@ -1,252 +0,0 @@
-<?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.goafanti.common.dao.PatentCostMapper">
-	<resultMap id="BaseResultMap" type="com.goafanti.common.model.PatentCost">
-		<id column="id" property="id" jdbcType="VARCHAR" />
-		<result column="pid" property="pid" jdbcType="VARCHAR" />
-		<result column="annual_fee" property="annualFee" jdbcType="INTEGER" />
-		<result column="annual_fee_state" property="annualFeeState"
-			jdbcType="INTEGER" />
-		<result column="application_fee" property="applicationFee"
-			jdbcType="INTEGER" />
-		<result column="trial_fee" property="trialFee" jdbcType="INTEGER" />
-		<result column="printing_fee" property="printingFee" jdbcType="INTEGER" />
-		<result column="funds" property="funds" jdbcType="INTEGER" />
-		<result column="reimbursement" property="reimbursement"
-			jdbcType="INTEGER" />
-		<result column="payment_state" property="paymentState"
-			jdbcType="INTEGER" />
-	</resultMap>
-	<sql id="Base_Column_List">
-		id, pid, annual_fee, annual_fee_state, application_fee, trial_fee,
-		printing_fee,
-		funds, reimbursement, payment_state
-	</sql>
-	<select id="selectByPrimaryKey" resultMap="BaseResultMap"
-		parameterType="java.lang.String">
-		select
-		<include refid="Base_Column_List" />
-		from patent_cost
-		where id = #{id,jdbcType=VARCHAR}
-	</select>
-	<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
-		delete from patent_cost
-		where id = #{id,jdbcType=VARCHAR}
-	</delete>
-	<insert id="insert" parameterType="com.goafanti.common.model.PatentCost">
-		insert into patent_cost (id, pid, annual_fee,
-		annual_fee_state, application_fee, trial_fee,
-		printing_fee, funds, reimbursement,
-		payment_state)
-		values (#{id,jdbcType=VARCHAR}, #{pid,jdbcType=VARCHAR},
-		#{annualFee,jdbcType=INTEGER},
-		#{annualFeeState,jdbcType=INTEGER}, #{applicationFee,jdbcType=INTEGER}, #{trialFee,jdbcType=INTEGER},
-		#{printingFee,jdbcType=INTEGER}, #{funds,jdbcType=INTEGER},
-		#{reimbursement,jdbcType=INTEGER},
-		#{paymentState,jdbcType=INTEGER})
-	</insert>
-	<insert id="insertSelective" parameterType="com.goafanti.common.model.PatentCost">
-		insert into patent_cost
-		<trim prefix="(" suffix=")" suffixOverrides=",">
-			<if test="id != null">
-				id,
-			</if>
-			<if test="pid != null">
-				pid,
-			</if>
-			<if test="annualFee != null">
-				annual_fee,
-			</if>
-			<if test="annualFeeState != null">
-				annual_fee_state,
-			</if>
-			<if test="applicationFee != null">
-				application_fee,
-			</if>
-			<if test="trialFee != null">
-				trial_fee,
-			</if>
-			<if test="printingFee != null">
-				printing_fee,
-			</if>
-			<if test="funds != null">
-				funds,
-			</if>
-			<if test="reimbursement != null">
-				reimbursement,
-			</if>
-			<if test="paymentState != null">
-				payment_state,
-			</if>
-		</trim>
-		<trim prefix="values (" suffix=")" suffixOverrides=",">
-			<if test="id != null">
-				#{id,jdbcType=VARCHAR},
-			</if>
-			<if test="pid != null">
-				#{pid,jdbcType=VARCHAR},
-			</if>
-			<if test="annualFee != null">
-				#{annualFee,jdbcType=INTEGER},
-			</if>
-			<if test="annualFeeState != null">
-				#{annualFeeState,jdbcType=INTEGER},
-			</if>
-			<if test="applicationFee != null">
-				#{applicationFee,jdbcType=INTEGER},
-			</if>
-			<if test="trialFee != null">
-				#{trialFee,jdbcType=INTEGER},
-			</if>
-			<if test="printingFee != null">
-				#{printingFee,jdbcType=INTEGER},
-			</if>
-			<if test="funds != null">
-				#{funds,jdbcType=INTEGER},
-			</if>
-			<if test="reimbursement != null">
-				#{reimbursement,jdbcType=INTEGER},
-			</if>
-			<if test="paymentState != null">
-				#{paymentState,jdbcType=INTEGER},
-			</if>
-		</trim>
-	</insert>
-	<update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.PatentCost">
-		update patent_cost
-		<set>
-			<if test="pid != null">
-				pid = #{pid,jdbcType=VARCHAR},
-			</if>
-			<if test="annualFee != null">
-				annual_fee = #{annualFee,jdbcType=INTEGER},
-			</if>
-			<if test="annualFeeState != null">
-				annual_fee_state = #{annualFeeState,jdbcType=INTEGER},
-			</if>
-			<if test="applicationFee != null">
-				application_fee = #{applicationFee,jdbcType=INTEGER},
-			</if>
-			<if test="trialFee != null">
-				trial_fee = #{trialFee,jdbcType=INTEGER},
-			</if>
-			<if test="printingFee != null">
-				printing_fee = #{printingFee,jdbcType=INTEGER},
-			</if>
-			<if test="funds != null">
-				funds = #{funds,jdbcType=INTEGER},
-			</if>
-			<if test="reimbursement != null">
-				reimbursement = #{reimbursement,jdbcType=INTEGER},
-			</if>
-			<if test="paymentState != null">
-				payment_state = #{paymentState,jdbcType=INTEGER},
-			</if>
-		</set>
-		where id = #{id,jdbcType=VARCHAR}
-	</update>
-	<update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.PatentCost">
-		update patent_cost
-		set pid = #{pid,jdbcType=VARCHAR},
-		annual_fee = #{annualFee,jdbcType=INTEGER},
-		annual_fee_state = #{annualFeeState,jdbcType=INTEGER},
-		application_fee = #{applicationFee,jdbcType=INTEGER},
-		trial_fee = #{trialFee,jdbcType=INTEGER},
-		printing_fee = #{printingFee,jdbcType=INTEGER},
-		funds = #{funds,jdbcType=INTEGER},
-		reimbursement = #{reimbursement,jdbcType=INTEGER},
-		payment_state = #{paymentState,jdbcType=INTEGER}
-		where id = #{id,jdbcType=VARCHAR}
-	</update>
-
-	<select id="findApplicationFeeListByPage" parameterType="String"
-		resultType="com.goafanti.patent.bo.PatentApplicationFeeBo">
-		select p.uid as uid , p.id as pid ,o.id as oid, c.id as cid,
-		p.serial_number as serialNumber ,p.patent_number as patentNumber ,
-		o.licence_province as locationProvince , o.unit_name as unitName ,
-		p.patent_name as patentName , p.patent_application_date as
-		patentApplicationDate,
-		c.payment_state as paymentState,c.application_fee as applicationFee ,
-		c.trial_fee as trialFee , c.printing_fee as printingFee ,
-		c.funds as funds , c.reimbursement as reimbursement
-		from patent_info p
-		LEFT JOIN organization_identity o on o.uid = p.uid
-		LEFT JOIN patent_cost c on p.id = c.pid 
-		<if test="principal != null">
-			left join contract_log l on p.contract_id=l.cid
-		</if>
-		WHERE p.deleted_sign = 0
-		<if test="locationProvince != null">
-			and o.licence_province = #{locationProvince,jdbcType=INTEGER}
-		</if>
-		<if test="pStart != null">
-			and p.patent_application_date <![CDATA[ >= ]]>
-			#{pStart,jdbcType=TIMESTAMP}
-		</if>
-		<if test="pEnd">
-			and p.patent_application_date <![CDATA[ < ]]>
-			#{pEnd,jdbcType=TIMESTAMP}
-		</if>
-		<if test="principal != null">
-			group by p.id,o.id,c.id
-		</if>
-		order by p.serial_number DESC
-		<if test="page_sql!=null">
-			${page_sql}
-		</if>
-	</select>
-
-	<select id="findApplicationFeeCount" resultType="java.lang.Integer"
-		parameterType="java.lang.String">
-		select count(distinct(p.id))
-		from patent_info p
-		LEFT JOIN organization_identity o on o.uid = p.uid
-		LEFT JOIN patent_cost c on p.id = c.pid
-		<if test="principal != null">
-			left join contract_log l on p.contract_id=l.cid
-		</if>
-		 WHERE p.deleted_sign = 0
-		<if test="locationProvince != null">
-			and o.licence_province = #{locationProvince,jdbcType=INTEGER}
-		</if>
-		<if test="pStart != null">
-			and p.patent_application_date <![CDATA[ >= ]]>
-			#{pStart,jdbcType=TIMESTAMP}
-		</if>
-		<if test="pEnd">
-			and p.patent_application_date <![CDATA[ < ]]>
-			#{pEnd,jdbcType=TIMESTAMP}
-		</if>
-	</select>
-	
- <insert id="batchInsert" parameterType="com.goafanti.common.model.PatentCost">
-   insert into patent_cost (id, pid, annual_fee,
-		annual_fee_state, application_fee, trial_fee,
-		printing_fee, funds, reimbursement,
-		payment_state)
-	values 
-    <foreach item="item" index="index" collection="list" separator=",">
-      (
-      	#{item.id,jdbcType=VARCHAR}, 
-      	#{item.pid,jdbcType=VARCHAR},
-		#{item.annualFee,jdbcType=INTEGER},
-		#{item.annualFeeState,jdbcType=INTEGER}, 
-		#{item.applicationFee,jdbcType=INTEGER}, 
-		#{item.trialFee,jdbcType=INTEGER},
-		#{item.printingFee,jdbcType=INTEGER}, 
-		#{item.funds,jdbcType=INTEGER},
-		#{item.reimbursement,jdbcType=INTEGER},
-		#{item.paymentState,jdbcType=INTEGER}
-	  )
-    </foreach>
-  </insert>
-  
-  <update id="batchUpdateByPrimaryKey" parameterType="java.util.List">
-		update patent_cost set annual_fee_state = 0
-		where id in
-		<foreach item="item" index="index" collection="list" open="("
-			separator="," close=")">
-			#{item}
-		</foreach>
-	</update>
-</mapper>

Разница между файлами не показана из-за своего большого размера
+ 0 - 1126
src/main/java/com/goafanti/common/mapper/PatentInfoMapper.xml


+ 0 - 282
src/main/java/com/goafanti/common/mapper/PatentRegistrationMapper.xml

@@ -1,282 +0,0 @@
-<?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.goafanti.common.dao.PatentRegistrationMapper" >
-  <resultMap id="BaseResultMap" type="com.goafanti.common.model.PatentRegistration" >
-    <id column="id" property="id" jdbcType="VARCHAR" />
-    <result column="pid" property="pid" jdbcType="VARCHAR" />
-    <result column="acceptance_receive_time" property="acceptanceReceiveTime" jdbcType="TIMESTAMP" />
-    <result column="acceptance_issue_time" property="acceptanceIssueTime" jdbcType="TIMESTAMP" />
-    <result column="acceptance_tracking_number" property="acceptanceTrackingNumber" jdbcType="VARCHAR" />
-    <result column="acceptance_express_company" property="acceptanceExpressCompany" jdbcType="VARCHAR" />
-    <result column="authorization_receive_time" property="authorizationReceiveTime" jdbcType="TIMESTAMP" />
-    <result column="authorization_issue_time" property="authorizationIssueTime" jdbcType="TIMESTAMP" />
-    <result column="authorization_tracking_number" property="authorizationTrackingNumber" jdbcType="VARCHAR" />
-    <result column="authorization_express_company" property="authorizationExpressCompany" jdbcType="VARCHAR" />
-    <result column="certificate_recieve_time" property="certificateRecieveTime" jdbcType="TIMESTAMP" />
-    <result column="certificate_issue_time" property="certificateIssueTime" jdbcType="TIMESTAMP" />
-    <result column="certificate_tracking_number" property="certificateTrackingNumber" jdbcType="VARCHAR" />
-    <result column="certificate_express_company" property="certificateExpressCompany" jdbcType="VARCHAR" />
-  </resultMap>
-  <sql id="Base_Column_List" >
-    id, pid, acceptance_receive_time, acceptance_issue_time, acceptance_tracking_number, 
-    acceptance_express_company, authorization_receive_time, authorization_issue_time, 
-    authorization_tracking_number, authorization_express_company, certificate_recieve_time, 
-    certificate_issue_time, certificate_tracking_number, certificate_express_company
-  </sql>
-  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
-    select 
-    <include refid="Base_Column_List" />
-    from patent_registration
-    where id = #{id,jdbcType=VARCHAR}
-  </select>
-  <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
-    delete from patent_registration
-    where id = #{id,jdbcType=VARCHAR}
-  </delete>
-  <insert id="insert" parameterType="com.goafanti.common.model.PatentRegistration" >
-    insert into patent_registration (id, pid, acceptance_receive_time, 
-      acceptance_issue_time, acceptance_tracking_number, 
-      acceptance_express_company, authorization_receive_time, 
-      authorization_issue_time, authorization_tracking_number, 
-      authorization_express_company, certificate_recieve_time, 
-      certificate_issue_time, certificate_tracking_number, 
-      certificate_express_company)
-    values (#{id,jdbcType=VARCHAR}, #{pid,jdbcType=VARCHAR}, #{acceptanceReceiveTime,jdbcType=TIMESTAMP}, 
-      #{acceptanceIssueTime,jdbcType=TIMESTAMP}, #{acceptanceTrackingNumber,jdbcType=VARCHAR}, 
-      #{acceptanceExpressCompany,jdbcType=VARCHAR}, #{authorizationReceiveTime,jdbcType=TIMESTAMP}, 
-      #{authorizationIssueTime,jdbcType=TIMESTAMP}, #{authorizationTrackingNumber,jdbcType=VARCHAR}, 
-      #{authorizationExpressCompany,jdbcType=VARCHAR}, #{certificateRecieveTime,jdbcType=TIMESTAMP}, 
-      #{certificateIssueTime,jdbcType=TIMESTAMP}, #{certificateTrackingNumber,jdbcType=VARCHAR}, 
-      #{certificateExpressCompany,jdbcType=VARCHAR})
-  </insert>
-  <insert id="insertSelective" parameterType="com.goafanti.common.model.PatentRegistration" >
-    insert into patent_registration
-    <trim prefix="(" suffix=")" suffixOverrides="," >
-      <if test="id != null" >
-        id,
-      </if>
-      <if test="pid != null" >
-        pid,
-      </if>
-      <if test="acceptanceReceiveTime != null" >
-        acceptance_receive_time,
-      </if>
-      <if test="acceptanceIssueTime != null" >
-        acceptance_issue_time,
-      </if>
-      <if test="acceptanceTrackingNumber != null" >
-        acceptance_tracking_number,
-      </if>
-      <if test="acceptanceExpressCompany != null" >
-        acceptance_express_company,
-      </if>
-      <if test="authorizationReceiveTime != null" >
-        authorization_receive_time,
-      </if>
-      <if test="authorizationIssueTime != null" >
-        authorization_issue_time,
-      </if>
-      <if test="authorizationTrackingNumber != null" >
-        authorization_tracking_number,
-      </if>
-      <if test="authorizationExpressCompany != null" >
-        authorization_express_company,
-      </if>
-      <if test="certificateRecieveTime != null" >
-        certificate_recieve_time,
-      </if>
-      <if test="certificateIssueTime != null" >
-        certificate_issue_time,
-      </if>
-      <if test="certificateTrackingNumber != null" >
-        certificate_tracking_number,
-      </if>
-      <if test="certificateExpressCompany != null" >
-        certificate_express_company,
-      </if>
-    </trim>
-    <trim prefix="values (" suffix=")" suffixOverrides="," >
-      <if test="id != null" >
-        #{id,jdbcType=VARCHAR},
-      </if>
-      <if test="pid != null" >
-        #{pid,jdbcType=VARCHAR},
-      </if>
-      <if test="acceptanceReceiveTime != null" >
-        #{acceptanceReceiveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="acceptanceIssueTime != null" >
-        #{acceptanceIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="acceptanceTrackingNumber != null" >
-        #{acceptanceTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="acceptanceExpressCompany != null" >
-        #{acceptanceExpressCompany,jdbcType=VARCHAR},
-      </if>
-      <if test="authorizationReceiveTime != null" >
-        #{authorizationReceiveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="authorizationIssueTime != null" >
-        #{authorizationIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="authorizationTrackingNumber != null" >
-        #{authorizationTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="authorizationExpressCompany != null" >
-        #{authorizationExpressCompany,jdbcType=VARCHAR},
-      </if>
-      <if test="certificateRecieveTime != null" >
-        #{certificateRecieveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="certificateIssueTime != null" >
-        #{certificateIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="certificateTrackingNumber != null" >
-        #{certificateTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="certificateExpressCompany != null" >
-        #{certificateExpressCompany,jdbcType=VARCHAR},
-      </if>
-    </trim>
-  </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.PatentRegistration" >
-    update patent_registration
-    <set >
-      <if test="pid != null" >
-        pid = #{pid,jdbcType=VARCHAR},
-      </if>
-      <if test="acceptanceReceiveTime != null" >
-        acceptance_receive_time = #{acceptanceReceiveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="acceptanceIssueTime != null" >
-        acceptance_issue_time = #{acceptanceIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="acceptanceTrackingNumber != null" >
-        acceptance_tracking_number = #{acceptanceTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="acceptanceExpressCompany != null" >
-        acceptance_express_company = #{acceptanceExpressCompany,jdbcType=VARCHAR},
-      </if>
-      <if test="authorizationReceiveTime != null" >
-        authorization_receive_time = #{authorizationReceiveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="authorizationIssueTime != null" >
-        authorization_issue_time = #{authorizationIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="authorizationTrackingNumber != null" >
-        authorization_tracking_number = #{authorizationTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="authorizationExpressCompany != null" >
-        authorization_express_company = #{authorizationExpressCompany,jdbcType=VARCHAR},
-      </if>
-      <if test="certificateRecieveTime != null" >
-        certificate_recieve_time = #{certificateRecieveTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="certificateIssueTime != null" >
-        certificate_issue_time = #{certificateIssueTime,jdbcType=TIMESTAMP},
-      </if>
-      <if test="certificateTrackingNumber != null" >
-        certificate_tracking_number = #{certificateTrackingNumber,jdbcType=VARCHAR},
-      </if>
-      <if test="certificateExpressCompany != null" >
-        certificate_express_company = #{certificateExpressCompany,jdbcType=VARCHAR},
-      </if>
-    </set>
-    where id = #{id,jdbcType=VARCHAR}
-  </update>
-  <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.PatentRegistration" >
-    update patent_registration
-    set pid = #{pid,jdbcType=VARCHAR},
-      acceptance_receive_time = #{acceptanceReceiveTime,jdbcType=TIMESTAMP},
-      acceptance_issue_time = #{acceptanceIssueTime,jdbcType=TIMESTAMP},
-      acceptance_tracking_number = #{acceptanceTrackingNumber,jdbcType=VARCHAR},
-      acceptance_express_company = #{acceptanceExpressCompany,jdbcType=VARCHAR},
-      authorization_receive_time = #{authorizationReceiveTime,jdbcType=TIMESTAMP},
-      authorization_issue_time = #{authorizationIssueTime,jdbcType=TIMESTAMP},
-      authorization_tracking_number = #{authorizationTrackingNumber,jdbcType=VARCHAR},
-      authorization_express_company = #{authorizationExpressCompany,jdbcType=VARCHAR},
-      certificate_recieve_time = #{certificateRecieveTime,jdbcType=TIMESTAMP},
-      certificate_issue_time = #{certificateIssueTime,jdbcType=TIMESTAMP},
-      certificate_tracking_number = #{certificateTrackingNumber,jdbcType=VARCHAR},
-      certificate_express_company = #{certificateExpressCompany,jdbcType=VARCHAR}
-    where id = #{id,jdbcType=VARCHAR}
-  </update>
-  
-  <select id="findRecieveSendList" resultType="com.goafanti.patent.bo.PatentRecieveSendBo">
-  	select 
-  		p.id as pid ,
-  		p.uid as uid, 
-  		o.id as oid, 
-  		r.id as rid, 
-  		p.serial_number as serialNumber ,
-  		p.patent_number as patentNumber ,
-        o.licence_province as locationProvince , 
-        o.unit_name as unitName ,
-        p.patent_catagory as patentCatagory , 
-        p.patent_name as patentName,
- 	    r.acceptance_receive_time as acceptanceReceiveTime , 
- 	    r.acceptance_issue_time as acceptanceIssueTime, 
-  	    r.acceptance_tracking_number as acceptanceTrackingNumber , 
-  	    r.acceptance_express_company as acceptanceExpressCompany,
-        r.authorization_receive_time as authorizationReceiveTime , 
-        r.authorization_issue_time as authorizationIssueTime, 
-        r.authorization_tracking_number as authorizationTrackingNumber , 
-        r.authorization_express_company as authorizationExpressCompany,
-        r.certificate_recieve_time as certificateRecieveTime, 
-        r.certificate_issue_time as certificateIssueTime, 
-        r.certificate_tracking_number as certificateTrackingNumber, 
-        r.certificate_express_company as certificateExpressCompany
-		from patent_info p 
-		LEFT  JOIN patent_registration r  on p.id = r.pid
-		LEFT JOIN organization_identity o on o.uid = p.uid
-		<if test="principal != null">
-			left join contract_log l on p.contract_id=l.cid
-		</if>
-		 where p.deleted_sign = 0
-		<if test="principal != null">
-			group by p.id,o.id,r.id
-		</if>
-		order by p.serial_number DESC
-		<if test="page_sql!=null">
-			${page_sql}
-		</if>
-  </select>
-  
-  <select id="findRecieveSendCount" resultType="java.lang.Integer">
-  	select count(distinct(p.id))
-	from patent_info p 
-	LEFT  JOIN patent_registration r  on p.id = r.pid
-	LEFT JOIN organization_identity o on o.uid = p.uid 
-	<if test="principal != null">
-		left join contract_log l on p.contract_id=l.cid
-	</if>
-	where p.deleted_sign = 0
-	<if test="principal != null">
-			group by p.id
-	</if>
-  </select>
-  
-  <insert id="batchInsert" parameterType="com.goafanti.common.model.PatentRegistration">
-     insert into patent_registration (id, pid, acceptance_receive_time, 
-      acceptance_issue_time, acceptance_tracking_number, 
-      acceptance_express_company, authorization_receive_time, 
-      authorization_issue_time, authorization_tracking_number, 
-      authorization_express_company, certificate_recieve_time, 
-      certificate_issue_time, certificate_tracking_number, 
-      certificate_express_company)
-	values 
-    <foreach item="item" index="index" collection="list" separator=",">
-      (
-      #{item.id,jdbcType=VARCHAR}, #{item.pid,jdbcType=VARCHAR}, #{item.acceptanceReceiveTime,jdbcType=TIMESTAMP}, 
-      #{item.acceptanceIssueTime,jdbcType=TIMESTAMP}, #{item.acceptanceTrackingNumber,jdbcType=VARCHAR}, 
-      #{item.acceptanceExpressCompany,jdbcType=VARCHAR}, #{item.authorizationReceiveTime,jdbcType=TIMESTAMP}, 
-      #{item.authorizationIssueTime,jdbcType=TIMESTAMP}, #{item.authorizationTrackingNumber,jdbcType=VARCHAR}, 
-      #{item.authorizationExpressCompany,jdbcType=VARCHAR}, #{item.certificateRecieveTime,jdbcType=TIMESTAMP}, 
-      #{item.certificateIssueTime,jdbcType=TIMESTAMP}, #{item.certificateTrackingNumber,jdbcType=VARCHAR}, 
-      #{item.certificateExpressCompany,jdbcType=VARCHAR}
-      )
-    </foreach>
-  </insert>
-  
-</mapper>