| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?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.keao.edu.user.dao.TenantInfoDao">
-
- <resultMap type="com.keao.edu.user.entity.TenantInfo" id="TenantInfo">
- <result column="id_" property="id" />
- <result column="name_" property="name" />
- <result column="address_" property="address" />
- <result column="domain_name_" property="domainName" />
- <result column="logo_url_" property="logoUrl" />
- <result column="contact_name_" property="contactName" />
- <result column="contact_phone_" property="contactPhone" />
- <result column="create_time_" property="createTime" />
- <result column="update_time_" property="updateTime" />
- </resultMap>
- <resultMap id="TenantInfoDto" type="com.keao.edu.user.dto.TenantInfoDto" extends="TenantInfo">
- <result column="role_ids_" property="roleIds"/>
- <result column="role_names_" property="roleNames"/>
- </resultMap>
-
- <!-- 根据主键查询一条记录 -->
- <select id="get" resultMap="TenantInfo" >
- SELECT * FROM tenant_info WHERE id_ = #{id}
- </select>
-
- <!-- 全查询 -->
- <select id="findAll" resultMap="TenantInfo">
- SELECT * FROM tenant_info ORDER BY id_
- </select>
-
- <!-- 向数据库增加一条记录 -->
- <insert id="insert" parameterType="com.keao.edu.user.entity.TenantInfo" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
- <!--
- <selectKey resultClass="int" keyProperty="id" >
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
- </selectKey>
- -->
- INSERT INTO tenant_info (id_,name_,address_,domain_name_,logo_url_,contact_name_,contact_phone_,create_time_,update_time_)
- VALUES(#{id},#{name},#{address},#{domainName},#{logoUrl},#{contactName},#{contactPhone},NOW(),NOW())
- </insert>
-
- <!-- 根据主键查询一条记录 -->
- <update id="update" parameterType="com.keao.edu.user.entity.TenantInfo">
- UPDATE tenant_info <set>
- <if test="address != null">
- address_ = #{address},
- </if>
- <if test="updateTime != null">
- update_time_ = #{updateTime},
- </if>
- <if test="logoUrl != null">
- logo_url_ = #{logoUrl},
- </if>
- <if test="contactPhone != null">
- contact_phone_ = #{contactPhone},
- </if>
- <if test="domainName != null">
- domain_name_ = #{domainName},
- </if>
- <if test="contactName != null">
- contact_name_ = #{contactName},
- </if>
- <if test="name != null">
- name_ = #{name}
- </if>
- </set> WHERE id_ = #{id}
- </update>
-
- <!-- 根据主键删除一条记录 -->
- <delete id="delete" >
- DELETE FROM tenant_info WHERE id_ = #{id}
- </delete>
- <sql id="queryPageCondition">
- <where>
- <if test="search!=null">
- AND (ti.id_=#{search} OR ti.name_ LIKE CONCAT('%', #{search}, '%'))
- </if>
- </where>
- </sql>
- <select id="queryPage" resultMap="TenantInfo" parameterType="map">
- SELECT
- ti.*
- FROM tenant_info
- <include refid="queryPageCondition"/>
- ORDER BY ti.id_ DESC
- <include refid="global.limit"/>
- </select>
-
- <!-- 查询当前表的总记录数 -->
- <select id="queryCount" resultType="int">
- SELECT COUNT(*) FROM tenant_info
- <include refid="queryPageCondition"/>
- </select>
- <select id="queryTenants" resultMap="TenantInfoDto" parameterType="map">
- SELECT
- ti.*,
- GROUP_CONCAT(DISTINCT sr.id_) role_ids_,
- GROUP_CONCAT(DISTINCT sr.role_name_) role_names_
- FROM tenant_info ti
- LEFT JOIN sys_user su ON ti.contact_phone_ = su.phone_
- LEFT JOIN sys_user_role sur ON sur.user_id_ = su.id_
- LEFT JOIN sys_role sr ON sr.id_ = sur.role_id_
- <include refid="queryPageCondition"/>
- GROUP BY ti.id_
- ORDER BY ti.id_ DESC
- <include refid="global.limit"/>
- </select>
- <!-- 查询当前表的总记录数 -->
- <select id="countTenants" resultType="int">
- SELECT COUNT(*) FROM tenant_info ti
- <include refid="queryPageCondition"/>
- </select>
- <select id="getWithOrgan" resultMap="TenantInfo">
- SELECT
- ti.*
- FROM
- tenant_info ti
- LEFT JOIN organization o ON o.tenant_id_ = ti.id_
- WHERE
- o.id_=#{organId}
- </select>
- </mapper>
|