<?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="org.springblade.modules.recordk.mapper.RecordkMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="recordkResultMap" type="org.springblade.modules.recordk.entity.Recordk">
|
<id column="id" property="id"/>
|
<result column="creditCode" property="creditcode"/>
|
<result column="enterpriseName" property="enterprisename"/>
|
<result column="representative" property="representative"/>
|
<result column="establishTime" property="establishtime"/>
|
<result column="registeredCapital" property="registeredcapital"/>
|
<result column="organizationCode" property="organizationcode"/>
|
<result column="registrationNumber" property="registrationnumber"/>
|
<result column="identificationNumber" property="identificationnumber"/>
|
<result column="enterprises" property="enterprises"/>
|
<result column="address" property="address"/>
|
<result column="business" property="business"/>
|
<result column="region" property="region"/>
|
<result column="registration" property="registration"/>
|
<result column="industry" property="industry"/>
|
<result column="type" property="type"/>
|
<result column="perid" property="perid"/>
|
<result column="offices" property="offices"/>
|
<result column="officetime" property="officetime"/>
|
<result column="deptid" property="deptid"/>
|
<result column="permitime" property="permitime"/>
|
<result column="ptype" property="ptype"/>
|
<result column="cardid" property="cardid"/>
|
<result column="representativecell" property="representativecell"/>
|
<result column="contacts" property="contacts"/>
|
<result column="contactscell" property="contactscell"/>
|
<result column="contactscell" property="contactscell"/>
|
<result column="storage" property="storage"/>
|
<result column="approve" property="approve"/>
|
<result column="jurisdiction" property="jurisdiction"/>
|
<result column="ksecuritys" property="ksecuritys"/>
|
<result column="kproject" property="kproject"/>
|
<result column="kzipcode" property="kzipcode"/>
|
<result column="kservicetime" property="kservicetime"/>
|
<result column="kaddress" property="kaddress"/>
|
</resultMap>
|
|
|
<select id="selectRecordkPage" resultMap="recordkResultMap">
|
select * from sys_recordk si left join
|
sys_jurisdiction sj
|
on
|
sj.id = si.jurisdiction where 1=1
|
<if test="recordk.ptype!=null and recordk.ptype!=''">
|
and ptype=#{recordk.ptype}
|
</if>
|
<if test="recordk.jurisdiction!=null and recordk.jurisdiction != '' and recordk.jurisdiction!='1372091709474910209'">
|
and (sj.id = #{recordk.jurisdiction} or sj.parent_id = #{recordk.jurisdiction})
|
</if>
|
<!-- <if test="recordk.usetype=='1'.toString()">-->
|
<!-- and jurisdiction in(${jurisdiction})-->
|
<!-- </if>-->
|
<!-- <if test="recordk.usetype=='2'.toString()">-->
|
<!-- and jurisdiction=#{recordk.jurisdiction}-->
|
<!-- </if>-->
|
</select>
|
|
<select id="selectIn" resultType="java.util.HashMap">
|
select *
|
from sys_recordk
|
where cardid = #{cardid}
|
and ptype = #{type}
|
</select>
|
|
<select id="selectRecordDetail" resultType="org.springblade.modules.recordk.dto.RecordkDTO">
|
select
|
id,
|
ptype,
|
type,
|
permitime,
|
cardid,
|
representativecell,
|
contacts,
|
contactscell,
|
jurisdiction,
|
industry,
|
registration,
|
creditcode,
|
enterprisename,
|
representative,
|
address,
|
overtime,
|
perid,
|
offices,
|
officetime,
|
ksecuritys,
|
kproject,
|
kzipcode,
|
kservicetime,
|
kaddress
|
from sys_recordk
|
where cardid = #{recordk.cardid}
|
and ptype = #{recordk.ptype}
|
</select>
|
</mapper>
|