Blame view

backend/integrate/src/main/resources/mapper/SysExternalUnite.map.xml 2.17 KB
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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.hotent.system.persistence.dao.SysExternalUniteDao">
	<resultMap id="SysExternalUnite" type="com.hotent.system.model.SysExternalUnite">
		<id property="id" column="ID_" jdbcType="VARCHAR"/>
		<result property="corpName" column="CORP_NAME_" jdbcType="VARCHAR"/>
		<result property="corpId" column="CORP_ID_" jdbcType="VARCHAR"/>
		<result property="corpSecret" column="CORP_SECRET_" jdbcType="VARCHAR"/>
		<result property="type" column="TYPE_" jdbcType="VARCHAR"/>
		<result property="baseUrl" column="BASE_URL_" jdbcType="VARCHAR"/>
		<result property="createTime" column="CREATE_TIME_" jdbcType="TIMESTAMP"/>
		<result property="updateTime" column="UPDATE_TIME_" jdbcType="TIMESTAMP"/>
		<result property="agentId" column="AGENT_ID_" jdbcType="VARCHAR"/>
		<result property="menuName" column="MENU_NAME_" jdbcType="VARCHAR"/>
		<result property="agentKey" column="AGENT_KEY_" jdbcType="VARCHAR"/>
		<result property="agentSecret" column="AGENT_SECRET_" jdbcType="VARCHAR"/>
		<result property="menuUrl" column="MENU_URL_" jdbcType="VARCHAR"/>
		<result property="createBy" column="create_by_" jdbcType="VARCHAR"/>
		<result property="createOrgId" column="create_org_id_" jdbcType="VARCHAR"/>
		<result property="updateBy" column="update_by_" jdbcType="VARCHAR"/>
		
		<result property="tempMsgId" column="TEMP_MSG_ID_" jdbcType="VARCHAR"/>

		<result property="autoSync" column="AUTO_SYNC_" jdbcType="NUMERIC"/>
		<result property="syncOrgId" column="SYNC_ORG_ID_" jdbcType="VARCHAR"/>
		<result property="syncOrg" column="SYNC_ORG_" jdbcType="VARCHAR"/>
		<result property="syncDirection" column="SYNC_DIRECTION_" jdbcType="VARCHAR"/>
	</resultMap>

	<select id="isTypeExists" parameterType="java.util.Map" resultMap="SysExternalUnite">
		SELECT * FROM portal_sys_external_unite
		WHERE
		TYPE_ = #{type}
		<if test="id!=null">
			and ID_ != #{id}
		</if>
	</select>
	<select id="getOneByType" parameterType="java.lang.String" resultMap="SysExternalUnite">
		SELECT * FROM portal_sys_external_unite
		WHERE
		TYPE_ = #{type}
	</select>

</mapper>