LocationMapper.xml 5.7 KB
<?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.sunyo.energy.location.dao.LocationMapper">
    <resultMap id="BaseResultMap" type="com.sunyo.energy.location.model.Location">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <id column="wm_id" property="wmid" jdbcType="VARCHAR"/>
        <id column="ee_id" property="eeid" jdbcType="VARCHAR"/>
        <result column="adrName" property="adrname" jdbcType="VARCHAR"/>
        <result column="parent" property="parent" jdbcType="INTEGER"/>
        <result column="type" property="type" jdbcType="INTEGER"/>
        <!--    <collection property="children" select="selectAll" column="id"></collection>-->
    </resultMap>
    <sql id="Base_Column_List">
    id, adrName, parent, type, wm_id, ee_id
  </sql>
    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from location
        where id = #{id,jdbcType=INTEGER}
    </select>
    <select id="selectAll" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        *
        from location
        where
        parent = #{id,jdbcType=INTEGER}
        <!--<if test="_adrname != '' and _adrname != null " >-->
        <!--or adrName = #{adrname, jdbcType=VARCHAR}-->
        <!--</if>-->
    </select>

    <select id="selectAllAdrName" resultMap="BaseResultMap" parameterType="java.lang.String">
    select
    *
    from location
    where
    adrName = #{adrname, jdbcType=VARCHAR}
  </select>

    <select id="waterId_eleId" resultMap="BaseResultMap" parameterType="string">
       select * from location where adrName = #{adrname, jdbcType=VARCHAR}
    </select>

    <select id="userPayList" resultType="java.util.HashMap">
    select
    wm.wm_id as wmId, wm.wm_fmstate as wmFmstate,
    wm.wm_lacc as wmLacc, wm.wm_sacc as wmSacc
    from
    location lon
    left join
    water_meter wm on lon.wm_id = wm.wm_id
    where
    lon.adrName=#{value,jdbcType=VARCHAR}
  </select>

    <select id="selectRoomNumber" parameterType="java.lang.String" resultType="java.lang.String">
    select
    adrName
    from
    location
    where
    wm_id = #{value, jdbcType=VARCHAR}
  </select>

    <select id="selectRoomNumberElectricity" parameterType="java.lang.String" resultType="java.lang.String">
    select
    adrName
    from
    location
    where
    ee_id = #{value, jdbcType=VARCHAR}
  </select>

    <select id="countAdrName" resultType="int" parameterType="map">
    select count(adrName) from location where adrName = #{adrName, jdbcType=VARCHAR} and parent = #{parent, jdbcType=VARCHAR}
  </select>

    <select id="countParent" parameterType="int" resultType="int">
    select count(parent) from location where parent = #{value}
  </select>

    <select id="findWmId" parameterType="string" resultType="string">
    select wm_id from location where adrname = #{value}
  </select>

    <select id="eeId" parameterType="string" resultType="string">
    select ee_id from location where adrname = #{value}
  </select>

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
    delete from location
    where id = #{id,jdbcType=INTEGER}
  </delete>
    <insert id="insert" parameterType="com.sunyo.energy.location.model.Location">
    insert into location (id, adrName, parent, 
      type)
    values (#{id,jdbcType=INTEGER}, #{adrname,jdbcType=VARCHAR}, #{parent,jdbcType=INTEGER}, 
      #{type,jdbcType=INTEGER})
  </insert>
    <insert id="insertSelective" parameterType="com.sunyo.energy.location.model.Location">
        insert into location
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">
                id,
            </if>
            <if test="adrname != null">
                adrName,
            </if>
            <if test="parent != null">
                parent,
            </if>
            <if test="type != null">
                type,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="id != null">
                #{id,jdbcType=INTEGER},
            </if>
            <if test="adrname != null">
                #{adrname,jdbcType=VARCHAR},
            </if>
            <if test="parent != null">
                #{parent,jdbcType=INTEGER},
            </if>
            <if test="type != null">
                #{type,jdbcType=INTEGER},
            </if>
        </trim>
    </insert>
    <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.energy.location.model.Location">
        update location
        <set>
            <if test="adrname != null">
                adrName = #{adrname,jdbcType=VARCHAR},
            </if>
            <if test="parent != null">
                parent = #{parent,jdbcType=INTEGER},
            </if>
            <if test="type != null">
                type = #{type,jdbcType=INTEGER},
            </if>
            <if test="wmid != null">
                wm_id = #{wmid,jdbcType=VARCHAR},
            </if>
            <if test="eeid != null">
                ee_id = #{eeid,jdbcType=VARCHAR}
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByPrimaryKey" parameterType="com.sunyo.energy.location.model.Location">
    update location
    set adrName = #{adrname,jdbcType=VARCHAR},
      parent = #{parent,jdbcType=INTEGER},
      type = #{type,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>

    <update id="editEeId" parameterType="string">
    update location
    set ee_id = #{deviceId,jdbcType=VARCHAR}
    where adrName = #{name,jdbcType=INTEGER}
  </update>
</mapper>