You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

177 lines
6.0 KiB
XML

<?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.glxp.udi.admin.dao.inout.UnitMaintainDao">
<select id="filterList" parameterType="com.glxp.udi.admin.req.inout.UnitMaintainFilterRequest"
resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
SELECT *
FROM io_unit_maintain
<where>
<if test="customerId != '' and customerId != null">
AND customerId = #{customerId}
</if>
<if test="corpType != null">
AND corpType = #{corpType}
</if>
<if test="key != '' and key != null">
AND (name like concat('%', #{key}, '%')
or pinyinCode like concat('%', #{key}, '%')
or unitId like concat('%', #{key}, '%')
or thirdId like concat('%', #{key}, '%')
or creditNo like concat('%', #{key}, '%'))
</if>
</where>
</select>
<insert id="insertUnitMaintain" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
replace INTO io_unit_maintain
(thirdId, unitId, name, spell,
addr, status, type, customerId, creditNo, corpType, outType, contact, mobile, pinyinCode)
values (#{thirdId},
#{unitId},
#{name},
#{spell},
#{addr},
#{status},
#{type}, #{customerId}, #{creditNo},
#{corpType}, #{outType}, #{contact},
#{mobile}, #{pinyinCode})
</insert>
<update id="updateUnit" parameterType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
UPDATE io_unit_maintain
<set>
<if test="thirdId != null">
thirdId=#{thirdId},
</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="status != null">
status=#{status},
</if>
<if test="type != null">
type=#{type},
</if>
<if test="creditNo != null">
creditNo=#{creditNo},
</if>
<if test="platformId != null">
platformId=#{platformId},
</if>
<if test="appid != null">
appid=#{appid},
</if>
<if test="apiKey != null">
apiKey=#{apiKey},
</if>
<if test="secretKey != null">
secretKey=#{secretKey},
</if>
<if test="customerId != null and customerId != ''">
customerId=#{customerId},
</if>
<if test="corpType != null and corpType != ''">
corpType=#{corpType},
</if>
<if test="outType != null and outType != ''">
outType=#{outType},
</if>
<if test="pinyinCode != null and pinyinCode != ''">
pinyinCode=#{pinyinCode},
</if>
<if test="contact != null and contact != ''">
contact=#{contact},
</if>
<if test="mobile != null and mobile != ''">
mobile=#{mobile},
</if>
<if test="sourceAction != null and sourceAction != ''">
sourceAction=#{sourceAction},
</if>
<if test="targetAction != null and targetAction != ''">
targetAction=#{targetAction},
</if>
<if test="invCode != null and invCode != ''">
invCode=#{invCode},
</if>
<if test="invSubCode != null and invSubCode != ''">
invSubCode=#{invSubCode},
</if>
</set>
WHERE id = #{id}
</update>
<select id="selectByName" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select *
from io_unit_maintain
where name = #{name}
</select>
<update id="unbindPlatform">
update io_unit_maintain
set platformId = null
where id = #{id}
</update>
<select id="getUnbindUnitMaintain" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select *
from io_unit_maintain
where customerId = #{customerId}
AND (platformId is null or platformId = '')
</select>
<select id="selectByUnitId" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select *
from io_unit_maintain
where unitId = #{unitId}
</select>
<select id="getSourceAction" resultType="java.lang.String">
select sourceAction
from io_unit_maintain
where unitId = #{fromCorpId}
</select>
<select id="getboundUnitMaintains" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select name,
unitId,
customerId,
platformId,
appid,
apiKey,
secretKey,
sourceAction,
targetAction
from io_unit_maintain
where platformId is not null
and sourceAction is not null
and targetAction is not null
</select>
<select id="checkUpload" resultType="java.lang.Integer">
select count(*)
from io_unit_maintain
where customerId = #{customerId}
and platformId is not null
and sourceAction = #{action}
</select>
<select id="countByName" resultType="java.lang.Integer">
select count(*)
from io_unit_maintain
where name = #{name}
and customerId = #{customerId}
</select>
</mapper>