|
|
|
@ -2,22 +2,24 @@
|
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.glxp.api.dao.thrsys.ThrCorpDao">
|
|
|
|
|
|
|
|
|
|
<select id="filterThrCorps" parameterType="com.glxp.api.req.thrsys.FilterThrCorpRequest"
|
|
|
|
|
resultType="com.glxp.api.res.thrsys.ThrCorpsResponse">
|
|
|
|
|
SELECT * FROM thr_corp
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM thr_corp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="unitId != '' and unitId != null">
|
|
|
|
|
AND unitId like concat('%',#{unitId},'%')
|
|
|
|
|
AND unitId like concat('%', #{unitId}, '%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
|
AND ( name LIKE concat('%',#{name},'%') or spell LIKE concat('%',#{name},'%') )
|
|
|
|
|
AND (name LIKE concat('%', #{name}, '%') or spell LIKE concat('%', #{name}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdSysFk != '' and thirdSysFk != null">
|
|
|
|
|
AND thirdSysFk = #{thirdSysFk}
|
|
|
|
|
</if>
|
|
|
|
|
<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 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
|
|
|
|
@ -26,54 +28,45 @@
|
|
|
|
|
|
|
|
|
|
<insert id="insertThrCorps" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrCorpEntity">
|
|
|
|
|
replace
|
|
|
|
|
INTO thr_corp
|
|
|
|
|
(
|
|
|
|
|
unitId,name,spell,addr,creditNo,
|
|
|
|
|
contact,mobile,thirdSysFk,updateTime,createUser,createTime,updateUser,remark
|
|
|
|
|
)
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
#{unitId},
|
|
|
|
|
#{name},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdSysFk},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{createUser},
|
|
|
|
|
#{createTime},
|
|
|
|
|
#{updateUser},
|
|
|
|
|
#{remark}
|
|
|
|
|
)
|
|
|
|
|
INTO thr_corp
|
|
|
|
|
(unitId, name, spell, addr, creditNo,
|
|
|
|
|
contact, mobile, thirdSysFk, updateTime, createUser, createTime, updateUser, remark)
|
|
|
|
|
values (#{unitId},
|
|
|
|
|
#{name},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdSysFk},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{createUser},
|
|
|
|
|
#{createTime},
|
|
|
|
|
#{updateUser},
|
|
|
|
|
#{remark})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<insert id="insertThrCorpss" keyProperty="id" parameterType="java.util.List">
|
|
|
|
|
replace INTO thr_corp
|
|
|
|
|
(
|
|
|
|
|
unitId,name,spell,addr,creditNo,
|
|
|
|
|
contact,mobile,thirdSysFk,updateTime,createUser,createTime,updateUser,remark
|
|
|
|
|
)
|
|
|
|
|
(unitId, name, spell, addr, creditNo,
|
|
|
|
|
contact, mobile, thirdSysFk, updateTime, createUser, createTime, updateUser, remark)
|
|
|
|
|
values
|
|
|
|
|
|
|
|
|
|
<foreach collection="thrCorpEntitys" item="item" index="index"
|
|
|
|
|
separator=",">
|
|
|
|
|
(
|
|
|
|
|
#{item.unitId},
|
|
|
|
|
#{item.name},
|
|
|
|
|
#{item.spell},
|
|
|
|
|
#{item.addr},
|
|
|
|
|
#{item.creditNo},
|
|
|
|
|
#{item.contact},
|
|
|
|
|
#{item.mobile},
|
|
|
|
|
#{item.thirdSysFk},
|
|
|
|
|
#{item.updateTime},
|
|
|
|
|
#{item.createUser},
|
|
|
|
|
#{item.createTime},
|
|
|
|
|
#{item.updateUser},
|
|
|
|
|
#{item.remark}
|
|
|
|
|
)
|
|
|
|
|
(#{item.unitId},
|
|
|
|
|
#{item.name},
|
|
|
|
|
#{item.spell},
|
|
|
|
|
#{item.addr},
|
|
|
|
|
#{item.creditNo},
|
|
|
|
|
#{item.contact},
|
|
|
|
|
#{item.mobile},
|
|
|
|
|
#{item.thirdSysFk},
|
|
|
|
|
#{item.updateTime},
|
|
|
|
|
#{item.createUser},
|
|
|
|
|
#{item.createTime},
|
|
|
|
|
#{item.updateUser},
|
|
|
|
|
#{item.remark})
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -96,47 +89,72 @@
|
|
|
|
|
<update id="updateThrCorps" parameterType="com.glxp.api.entity.thrsys.ThrCorpEntity">
|
|
|
|
|
UPDATE thr_corp
|
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
|
<if test="unitId != null">unitId=#{unitId},</if>
|
|
|
|
|
<if test="name != null">name=#{name},</if>
|
|
|
|
|
<if test="spell != null">spell=#{spell},</if>
|
|
|
|
|
<if test="addr != null">addr=#{addr},</if>
|
|
|
|
|
<if test="creditNo != null">creditNo=#{creditNo},</if>
|
|
|
|
|
<if test="contact != null">contact=#{contact},</if>
|
|
|
|
|
<if test="mobile != null">mobile=#{mobile},</if>
|
|
|
|
|
<if test="thirdSysFk != null">thirdSysFk=#{thirdSysFk},</if>
|
|
|
|
|
<if test="updateTime != null">updateTime=#{updateTime},</if>
|
|
|
|
|
<if test="createUser != null">createUser=#{createUser},</if>
|
|
|
|
|
<if test="createTime != null">createTime=#{createTime},</if>
|
|
|
|
|
<if test="updateUser != null">updateUser=#{updateUser},</if>
|
|
|
|
|
<if test="remark != null">remark=#{remark},</if>
|
|
|
|
|
|
|
|
|
|
<if test="unitId != null">
|
|
|
|
|
unitId=#{unitId},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="name != null">
|
|
|
|
|
name=#{name},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="spell != null">
|
|
|
|
|
spell=#{spell},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="addr != null">
|
|
|
|
|
addr=#{addr},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="creditNo != null">
|
|
|
|
|
creditNo=#{creditNo},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="contact != null">
|
|
|
|
|
contact=#{contact},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="mobile != null">
|
|
|
|
|
mobile=#{mobile},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdSysFk != null">
|
|
|
|
|
thirdSysFk=#{thirdSysFk},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
updateTime=#{updateTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createUser != null">
|
|
|
|
|
createUser=#{createUser},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createTime != null">
|
|
|
|
|
createTime=#{createTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateUser != null">
|
|
|
|
|
updateUser=#{updateUser},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="remark != null">
|
|
|
|
|
remark=#{remark},
|
|
|
|
|
</if>
|
|
|
|
|
</trim>
|
|
|
|
|
WHERE id = #{id}
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<insert id="importThrCorp" parameterType="com.glxp.api.entity.thrsys.ThrCorpEntity">
|
|
|
|
|
replace
|
|
|
|
|
into thr_corp (unitId, spell, addr, creditNo, contact, mobile, thirdSysFk, name, updateTime,createUser,createTime,updateUser,remark)
|
|
|
|
|
values (
|
|
|
|
|
#{unitId},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdSysFk},
|
|
|
|
|
#{name},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{item.createUser},
|
|
|
|
|
#{item.createTime},
|
|
|
|
|
#{item.updateUser},
|
|
|
|
|
#{item.remark}
|
|
|
|
|
)
|
|
|
|
|
into thr_corp (unitId, spell, addr, creditNo, contact, mobile, thirdSysFk, name, updateTime, createUser,
|
|
|
|
|
createTime, updateUser, remark)
|
|
|
|
|
values (#{unitId},
|
|
|
|
|
#{spell},
|
|
|
|
|
#{addr},
|
|
|
|
|
#{creditNo},
|
|
|
|
|
#{contact},
|
|
|
|
|
#{mobile},
|
|
|
|
|
#{thirdSysFk},
|
|
|
|
|
#{name},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{item.createUser},
|
|
|
|
|
#{item.createTime},
|
|
|
|
|
#{item.updateUser},
|
|
|
|
|
#{item.remark})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<select id="selectByThirdId" parameterType="com.glxp.api.req.thrsys.ThrUnitMaintainFilterRequest"
|
|
|
|
|
resultType="com.glxp.api.res.thrsys.ThrUnitMaintainResponse">
|
|
|
|
|
select * FROM basic_corp
|
|
|
|
|
select *
|
|
|
|
|
FROM basic_corp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="thirdId != '' and thirdId != null">
|
|
|
|
|
AND thirdId = #{thirdId}
|
|
|
|
@ -172,6 +190,28 @@
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectByLastTime" resultType="com.glxp.api.entity.thrsys.ThrCorpEntity">
|
|
|
|
|
select * from thr_corp where updateTime >= #{lastUpdateTime}
|
|
|
|
|
select *
|
|
|
|
|
from thr_corp
|
|
|
|
|
where updateTime >= #{lastUpdateTime}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectByUnitIdAndThirdId" resultType="com.glxp.api.entity.thrsys.ThrCorpEntity">
|
|
|
|
|
select id,
|
|
|
|
|
spell,
|
|
|
|
|
addr,
|
|
|
|
|
creditNo,
|
|
|
|
|
contact,
|
|
|
|
|
mobile,
|
|
|
|
|
name,
|
|
|
|
|
remark
|
|
|
|
|
from thr_corp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="unitId != null and unitId != ''">
|
|
|
|
|
AND unitId = #{unitId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdId != null and thirdId != ''">
|
|
|
|
|
AND thirdSysFk = #{thirdId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|