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.
289 lines
11 KiB
XML
289 lines
11 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.api.dao.system.CompanyDao">
|
|
|
|
|
|
<select id="findCompany" parameterType="java.lang.String"
|
|
resultType="com.glxp.api.entity.system.CompanyEntity">
|
|
SELECT * ,b.appKey as alihealthAppKey,b.appSecret as alihealthAppSecret,b.refEntId as alihealthRefEntId
|
|
FROM sup_company a left join
|
|
customer_info b on a.customerId = b.customerId
|
|
where a.customerId = #{customerId}
|
|
</select>
|
|
|
|
|
|
<select id="filterCompany" parameterType="com.glxp.api.req.auth.FilterCompanyRequest"
|
|
resultType="com.glxp.api.entity.system.CompanyEntity">
|
|
SELECT *
|
|
FROM sup_company
|
|
<where>
|
|
<if test="customerId != null and customerId != ''">
|
|
and parentIdFk = #{customerId}
|
|
</if>
|
|
<if test="companyName != null and companyName != ''">
|
|
and companyName like concat('%', #{companyName}, '%')
|
|
</if>
|
|
<if test="creditNum != null and creditNum != ''">
|
|
and creditNum like concat('%', #{creditNum}, '%')
|
|
</if>
|
|
<if test="auditStatus != null and auditStatus != ''">
|
|
and auditStatus = #{auditStatus}
|
|
</if>
|
|
<if test="unitIdFk != null and unitIdFk != ''">
|
|
and unitIdFk = #{unitIdFk}
|
|
</if>
|
|
<if test="notSelectCustomers != null and notSelectCustomers.size() != 0">
|
|
and customerId not in
|
|
<foreach collection="notSelectCustomers" item="item" open="(" separator="," close=")">
|
|
#{item}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
<delete id="deleteCompany" parameterType="java.lang.Long">
|
|
delete
|
|
from sup_company
|
|
where customerId = #{customerId}
|
|
</delete>
|
|
<select id="findCompanyByName" parameterType="java.lang.String"
|
|
resultType="com.glxp.api.entity.system.CompanyEntity">
|
|
SELECT *
|
|
FROM sup_company
|
|
where companyName = #{companyName}
|
|
</select>
|
|
<select id="getSubCompany" parameterType="com.glxp.api.req.auth.FilterCompanyRequest"
|
|
resultType="com.glxp.api.entity.system.CompanyEntity">
|
|
SELECT *
|
|
FROM sup_company
|
|
<where>
|
|
<if test="customerId != null and customerId != ''">
|
|
and parentIdFk = #{customerId}
|
|
</if>
|
|
<if test="companyName != null and companyName != ''">
|
|
and companyName like concat('%', #{companyName}, '%')
|
|
</if>
|
|
<if test="creditNum != null and creditNum != ''">
|
|
and creditNum like concat('%', #{creditNum}, '%')
|
|
</if>
|
|
<if test="auditStatus != null and auditStatus != ''">
|
|
and auditStatus = #{auditStatus}
|
|
</if>
|
|
<if test="unitIdFk != null and unitIdFk != ''">
|
|
and unitIdFk = #{unitIdFk}
|
|
</if>
|
|
<if test="(auditStatus == null or auditStatus == '') and auditStatusList != null and auditStatusList.size() > 0">
|
|
<foreach collection="auditStatusList" item="auditStatus" open="AND (" separator="OR" close=")">
|
|
auditStatus = #{auditStatus,jdbcType=VARCHAR}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
</select>
|
|
<select id="getSubCompany2" parameterType="com.glxp.api.req.auth.FilterCompanyRequest"
|
|
resultType="com.glxp.api.entity.system.CompanyEntity">
|
|
SELECT *
|
|
FROM (sup_company
|
|
inner JOIN company_product_relevance
|
|
ON sup_company.customerId = company_product_relevance.customerId)
|
|
<where>
|
|
<if test="customerId != null and customerId != ''">
|
|
and parentIdFk = #{customerId}
|
|
</if>
|
|
<if test="companyName != null and companyName != ''">
|
|
and companyName like concat('%', #{companyName}, '%')
|
|
</if>
|
|
<if test="creditNum != null and creditNum != ''">
|
|
and creditNum like concat('%', #{creditNum}, '%')
|
|
</if>
|
|
<if test="auditStatus != null and auditStatus != ''">
|
|
and (sup_company.auditStatus = #{auditStatus}
|
|
or company_product_relevance.auditStatus = #{auditStatus}
|
|
)
|
|
</if>
|
|
<if test="(auditStatus == null or auditStatus == '') and auditStatusList != null and auditStatusList.size() > 0">
|
|
<foreach collection="auditStatusList" item="auditStatus" open="AND (" separator="OR" close=")">
|
|
auditStatus = #{auditStatus,jdbcType=VARCHAR}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
<update id="modifyCompany" parameterType="com.glxp.api.entity.system.CompanyEntity">
|
|
UPDATE sup_company
|
|
<trim prefix="set" suffixOverrides=",">
|
|
<if test="companyName != null">
|
|
companyName=#{companyName},
|
|
</if>
|
|
<if test="bussinessStatus != null">
|
|
bussinessStatus=#{bussinessStatus},
|
|
</if>
|
|
<if test="creditNum != null">
|
|
creditNum=#{creditNum},
|
|
</if>
|
|
<if test="classes != null">
|
|
classes=#{classes},
|
|
</if>
|
|
<if test="area != null">
|
|
area=#{area},
|
|
</if>
|
|
<if test="detailAddr != null">
|
|
detailAddr=#{detailAddr},
|
|
</if>
|
|
<if test="appId != null">
|
|
appId=#{appId},
|
|
</if>
|
|
<if test="appSecret != null">
|
|
appSecret=#{appSecret},
|
|
</if>
|
|
<if test="contacts != null">
|
|
contacts=#{contacts},
|
|
</if>
|
|
<if test="mobile != null">
|
|
mobile=#{mobile},
|
|
</if>
|
|
<if test="tel != null">
|
|
tel=#{tel},
|
|
</if>
|
|
<if test="email != null">
|
|
email=#{email},
|
|
</if>
|
|
<if test="refEntId != null">
|
|
refEntId=#{refEntId},
|
|
</if>
|
|
<if test="entId != null">
|
|
entId=#{entId},
|
|
</if>
|
|
<if test="networkType != null">
|
|
networkType=#{networkType},
|
|
</if>
|
|
<if test="certIdFk != null">
|
|
certIdFk=#{certIdFk},
|
|
</if>
|
|
<if test="areaCode != null">
|
|
areaCode=#{areaCode},
|
|
</if>
|
|
<if test="parentCompany != null">
|
|
parentCompany=#{parentCompany},
|
|
</if>
|
|
<if test="parentIdFk != null">
|
|
parentIdFk=#{parentIdFk},
|
|
</if>
|
|
<if test="contactsPapersType != null">
|
|
contactsPapersType=#{contactsPapersType},
|
|
</if>
|
|
<if test="contactsPapersCode != null">
|
|
contactsPapersCode=#{contactsPapersCode},
|
|
</if>
|
|
<if test="registerStatus != null">
|
|
registerStatus=#{registerStatus},
|
|
</if>
|
|
<if test="jyxkzh != null">
|
|
jyxkzh=#{jyxkzh},
|
|
</if>
|
|
<if test="jyxkzfzjg != null">
|
|
jyxkzfzjg=#{jyxkzfzjg},
|
|
</if>
|
|
<if test="jyxkzyxq != null">
|
|
jyxkzyxq=#{jyxkzyxq},
|
|
</if>
|
|
<if test="jybapzh != null">
|
|
jybapzh=#{jybapzh},
|
|
</if>
|
|
<if test="jybabm != null">
|
|
jybabm=#{jybabm},
|
|
</if>
|
|
<if test="fzrq != null">
|
|
fzrq=#{fzrq},
|
|
</if>
|
|
<if test="suihao != null">
|
|
suihao=#{suihao},
|
|
</if>
|
|
<if test="kaihuhang != null">
|
|
kaihuhang=#{kaihuhang},
|
|
</if>
|
|
<if test="kaihuzhanghao != null">
|
|
kaihuzhanghao=#{kaihuzhanghao},
|
|
</if>
|
|
<if test="auditStatus != null">
|
|
auditStatus=#{auditStatus},
|
|
</if>
|
|
<if test="filePath != null">
|
|
filePath=#{filePath},
|
|
</if>
|
|
<if test="filePath2 != null">
|
|
filePath2=#{filePath2},
|
|
</if>
|
|
<if test="filePath3 != null">
|
|
filePath3=#{filePath3},
|
|
</if>
|
|
<if test="filePath4 != null">
|
|
filePath4=#{filePath4},
|
|
</if>
|
|
<if test="unitIdFk != null">
|
|
unitIdFk=#{unitIdFk},
|
|
</if>
|
|
</trim>
|
|
WHERE customerId = #{customerId}
|
|
</update>
|
|
|
|
<insert id="insertCompany" parameterType="com.glxp.api.entity.system.CompanyEntity">
|
|
INSERT INTO sup_company(companyName, bussinessStatus, creditNum, classes, area,
|
|
detailAddr, appId, appSecret, contacts, mobile, tel, email, customerId, areaCode,
|
|
refEntId, entId, networkType, certIdFk, parentCompany, parentIdFk,
|
|
contactsPapersType, contactsPapersCode, registerStatus, jyxkzh, jyxkzfzjg, jyxkzyxq,
|
|
jybapzh, jybabm, fzrq, suihao, kaihuhang, kaihuzhanghao, auditStatus,
|
|
filePath, filePath2, filePath3, filePath4, unitIdFk)
|
|
values (#{companyName},
|
|
#{bussinessStatus},
|
|
#{creditNum},
|
|
#{classes},
|
|
#{area},
|
|
#{detailAddr},
|
|
#{appId},
|
|
#{appSecret},
|
|
#{contacts},
|
|
#{mobile},
|
|
#{tel},
|
|
#{email},
|
|
#{customerId},
|
|
#{areaCode},
|
|
#{refEntId},
|
|
#{entId},
|
|
#{networkType},
|
|
#{certIdFk},
|
|
#{parentCompany},
|
|
#{parentIdFk},
|
|
#{contactsPapersType},
|
|
#{contactsPapersCode},
|
|
#{registerStatus},
|
|
#{jyxkzh},
|
|
#{jyxkzfzjg},
|
|
#{jyxkzyxq},
|
|
#{jybapzh},
|
|
#{jybabm},
|
|
#{fzrq},
|
|
#{suihao},
|
|
#{kaihuhang},
|
|
#{kaihuzhanghao},
|
|
#{auditStatus},
|
|
#{filePath},
|
|
#{filePath2},
|
|
#{filePath3},
|
|
#{filePath4}, #{unitIdFk})
|
|
</insert>
|
|
<select id="findKey" parameterType="java.lang.String"
|
|
resultType="com.glxp.api.entity.auth.AliKeyEntity">
|
|
SELECT sup_company.refEntId,
|
|
sup_company.entId,
|
|
alicert.appKey,
|
|
alicert.appSecret
|
|
from sup_company
|
|
INNER JOIN alicert on sup_company.certIdFk = alicert.id
|
|
where sup_company.customerId = #{customerId}
|
|
</select>
|
|
|
|
|
|
</mapper>
|
|
|