<?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.revoke.mapper.RevokeMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="revokeResultMap" type="org.springblade.modules.revoke.entity.Revoke">
|
<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="reason" property="reason"/>
|
<result column="ctime" property="ctime"/>
|
<result column="deptid" property="deptid"/>
|
<result column="representativecell" property="representativecell"/>
|
<result column="contacts" property="contacts"/>
|
<result column="contactscell" property="contactscell"/>
|
<result column="approve" property="approve"/>
|
<result column="jurisdiction" property="jurisdiction"/>
|
<result column="papprove" property="papprove"/>
|
<result column="xapprove" property="xapprove"/>
|
<result column="sapprove" property="sapprove"/>
|
<result column="popinion" property="popinion"/>
|
<result column="xopinion" property="xopinion"/>
|
<result column="sopinion" property="sopinion"/>
|
</resultMap>
|
|
|
<select id="selectRevokePage" resultMap="revokeResultMap">
|
select * from sys_revoke si left join
|
sys_jurisdiction sj
|
on
|
sj.id = si.jurisdiction where 1=1
|
<if test="revoke.ptype!=null and revoke.ptype!=''">
|
and ptype=#{record.ptype}
|
</if>
|
<if test="revoke.jurisdiction!=null and revoke.jurisdiction != '' and revoke.jurisdiction!='1372091709474910209'">
|
and (sj.id = #{record.jurisdiction} or sj.parent_id = #{record.jurisdiction})
|
</if>
|
<if test="revoke.papprove!=null and revoke.papprove!=''">
|
and papprove=#{record.papprove}
|
</if>
|
<if test="revoke.xapprove!=null and revoke.xapprove!=''">
|
and xapprove=#{record.xapprove}
|
</if>
|
<if test="revoke.sapprove!=null and revoke.sapprove!=''">
|
and sapprove=#{record.sapprove}
|
</if>
|
</select>
|
|
</mapper>
|