|
|
|
@ -2,12 +2,11 @@
|
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.glxp.api.dao.basic.BasicUnitMaintainDao">
|
|
|
|
|
|
|
|
|
|
<select id="filterList" parameterType="com.glxp.api.req.basic.BasicUnitMaintainFilterRequest"
|
|
|
|
|
resultType="com.glxp.api.entity.basic.BasicUnitMaintainEntity">
|
|
|
|
|
SELECT * FROM basic_corp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="key != '' and key!=null">
|
|
|
|
|
<if test="key != '' and key != null">
|
|
|
|
|
and
|
|
|
|
|
( name like concat('%',#{key},'%')
|
|
|
|
|
or spell like concat('%',#{key},'%')
|
|
|
|
@ -36,13 +35,11 @@
|
|
|
|
|
<if test="outType != null">
|
|
|
|
|
AND ( outType <![CDATA[ <> ]]> #{outType} or outType is NULL)
|
|
|
|
|
</if>
|
|
|
|
|
<if test="lastUpdateTime!=null and lastUpdateTime!=''">
|
|
|
|
|
<if test="lastUpdateTime != null and lastUpdateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
order by updateTime desc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectByThirdId" parameterType="com.glxp.api.req.basic.BasicUnitMaintainFilterRequest"
|
|
|
|
@ -79,7 +76,7 @@
|
|
|
|
|
addr,status,`type`,creditNo,contact,mobile,thirdId1,thirdId2,thirdId3,thirdId4,
|
|
|
|
|
thirdName,thirdName1,thirdName2,thirdName3,thirdName4,updateTime,corpType,outType)
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
(
|
|
|
|
|
#{thirdId},
|
|
|
|
|
#{erpId},
|
|
|
|
|
#{name},
|
|
|
|
@ -115,7 +112,7 @@
|
|
|
|
|
addr,status,`type`,creditNo,contact,mobile,thirdId1,thirdId2,thirdId3,thirdId4,
|
|
|
|
|
thirdName,thirdName1,thirdName2,thirdName3,thirdName4,updateTime,corpType,outType)
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
(
|
|
|
|
|
#{thirdId},
|
|
|
|
|
#{erpId},
|
|
|
|
|
#{name},
|
|
|
|
@ -144,54 +141,108 @@
|
|
|
|
|
|
|
|
|
|
<insert id="insert" parameterType="com.glxp.api.entity.basic.BasicUnitMaintainEntity">
|
|
|
|
|
insert INTO basic_corp(thirdId, erpId, `name`, spell, addr,
|
|
|
|
|
status, `type`, creditNo, contact, mobile, thirdId1, thirdId2, thirdId3, thirdId4,
|
|
|
|
|
thirdName, thirdName1, thirdName2, thirdName3, thirdName4, updateTime, corpType, outType)
|
|
|
|
|
status, `type`, creditNo, contact, mobile, thirdId1, thirdId2, thirdId3, thirdId4,
|
|
|
|
|
thirdName, thirdName1, thirdName2, thirdName3, thirdName4, updateTime, corpType, outType)
|
|
|
|
|
values (#{thirdId},
|
|
|
|
|
#{erpId},
|
|
|
|
|
#{name},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{status},
|
|
|
|
|
#{type},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdId1}, #{thirdId2}, #{thirdId3}, #{thirdId4},
|
|
|
|
|
#{thirdName}, #{thirdName1}, #{thirdName2}, #{thirdName3}, #{thirdName4}, #{updateTime}, #{corpType},
|
|
|
|
|
#{outType})
|
|
|
|
|
#{erpId},
|
|
|
|
|
#{name},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{status},
|
|
|
|
|
#{type},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdId1}, #{thirdId2}, #{thirdId3}, #{thirdId4},
|
|
|
|
|
#{thirdName}, #{thirdName1}, #{thirdName2}, #{thirdName3}, #{thirdName4}, #{updateTime}, #{corpType},
|
|
|
|
|
#{outType})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateById" parameterType="com.glxp.api.entity.basic.BasicUnitMaintainEntity">
|
|
|
|
|
UPDATE basic_corp
|
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
|
<if test="thirdId != null">thirdId=#{thirdId},</if>
|
|
|
|
|
<if test="thirdId == ''">thirdId=null,</if>
|
|
|
|
|
<if test="erpId != null">erpId=#{erpId},</if>
|
|
|
|
|
<if test="name != null">`name`=#{name},</if>
|
|
|
|
|
<if test="spell != null">spell=#{spell},</if>
|
|
|
|
|
<if test="addr != null">addr=#{addr},</if>
|
|
|
|
|
<if test="status != null">status=#{status},</if>
|
|
|
|
|
<if test="type != null">`type`=#{type},</if>
|
|
|
|
|
<if test="creditNo != null">creditNo=#{creditNo},</if>
|
|
|
|
|
<if test="contact != null">contact=#{contact},</if>
|
|
|
|
|
<if test="mobile != null">mobile=#{mobile},</if>
|
|
|
|
|
<if test="thirdId1 != null">thirdId1=#{thirdId1},</if>
|
|
|
|
|
<if test="thirdId2 != null">thirdId2=#{thirdId2},</if>
|
|
|
|
|
<if test="thirdId3 != null">thirdId3=#{thirdId3},</if>
|
|
|
|
|
<if test="thirdId4 != null">thirdId4=#{thirdId4},</if>
|
|
|
|
|
<if test="thirdId1 == ''">thirdId1=null,</if>
|
|
|
|
|
<if test="thirdId2 == ''">thirdId2=null,</if>
|
|
|
|
|
<if test="thirdId3 == ''">thirdId3=null,</if>
|
|
|
|
|
<if test="thirdId4 == ''">thirdId4=null,</if>
|
|
|
|
|
<if test="thirdName != null">thirdName=#{thirdName},</if>
|
|
|
|
|
<if test="thirdName1 != null">thirdName1=#{thirdName1},</if>
|
|
|
|
|
<if test="thirdName2 != null">thirdName2=#{thirdName2},</if>
|
|
|
|
|
<if test="thirdName3 != null">thirdName3=#{thirdName3},</if>
|
|
|
|
|
<if test="thirdName4 != null">thirdName4=#{thirdName4},</if>
|
|
|
|
|
<if test="updateTime != null">updateTime=#{updateTime},</if>
|
|
|
|
|
<if test="corpType != null">corpType=#{corpType},</if>
|
|
|
|
|
<if test="outType != null">outType=#{outType},</if>
|
|
|
|
|
<if test="thirdId != null">
|
|
|
|
|
thirdId=#{thirdId},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId == ''">
|
|
|
|
|
thirdId=null,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="erpId != null">
|
|
|
|
|
erpId=#{erpId},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="name != null">
|
|
|
|
|
`name`=#{name},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="spell != null">
|
|
|
|
|
spell=#{spell},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="addr != null">
|
|
|
|
|
addr=#{addr},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="status != null">
|
|
|
|
|
status=#{status},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="type != null">
|
|
|
|
|
`type`=#{type},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="creditNo != null">
|
|
|
|
|
creditNo=#{creditNo},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="contact != null">
|
|
|
|
|
contact=#{contact},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="mobile != null">
|
|
|
|
|
mobile=#{mobile},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId1 != null">
|
|
|
|
|
thirdId1=#{thirdId1},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId2 != null">
|
|
|
|
|
thirdId2=#{thirdId2},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId3 != null">
|
|
|
|
|
thirdId3=#{thirdId3},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId4 != null">
|
|
|
|
|
thirdId4=#{thirdId4},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId1 == ''">
|
|
|
|
|
thirdId1=null,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId2 == ''">
|
|
|
|
|
thirdId2=null,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId3 == ''">
|
|
|
|
|
thirdId3=null,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId4 == ''">
|
|
|
|
|
thirdId4=null,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdName != null">
|
|
|
|
|
thirdName=#{thirdName},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdName1 != null">
|
|
|
|
|
thirdName1=#{thirdName1},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdName2 != null">
|
|
|
|
|
thirdName2=#{thirdName2},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdName3 != null">
|
|
|
|
|
thirdName3=#{thirdName3},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdName4 != null">
|
|
|
|
|
thirdName4=#{thirdName4},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
updateTime=#{updateTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="corpType != null">
|
|
|
|
|
corpType=#{corpType},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="outType != null">
|
|
|
|
|
outType=#{outType},
|
|
|
|
|
</if>
|
|
|
|
|
</trim>
|
|
|
|
|
WHERE id=#{id}
|
|
|
|
|
</update>
|
|
|
|
@ -234,12 +285,12 @@
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="importBasicUnitMaintain" keyProperty="id">
|
|
|
|
|
<insert id="importBasicUnitMaintain">
|
|
|
|
|
replace
|
|
|
|
|
INTO basic_corp
|
|
|
|
|
( thirdId, erpId, `name`, spell,
|
|
|
|
|
addr, status, `type`, creditNo, contact, mobile, thirdId1, thirdId2, thirdId3, thirdId4,
|
|
|
|
|
thirdName, thirdName1, thirdName2, thirdName3, thirdName4, updateTime, corpType,outType)
|
|
|
|
|
( thirdId, erpId, `name`, spell,
|
|
|
|
|
addr, status, `type`, creditNo, contact, mobile, thirdId1, thirdId2, thirdId3, thirdId4,
|
|
|
|
|
thirdName, thirdName1, thirdName2, thirdName3, thirdName4, updateTime, corpType,outType)
|
|
|
|
|
values (
|
|
|
|
|
#{thirdId},
|
|
|
|
|
#{erpId},
|
|
|
|
|