LocationUsersMapper.xml 1.8 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.LocationUsersMapper" >
  <resultMap id="BaseResultMap" type="com.sunyo.energy.location.model.LocationUsers" >
    <result column="username" property="username" jdbcType="VARCHAR" />
    <result column="phone" property="phone" jdbcType="VARCHAR" />
    <result column="wmId" property="wmid" jdbcType="VARCHAR" />
    <result column="eeId" property="eeid" jdbcType="VARCHAR" />
  </resultMap>

  <select id="selectAll" resultMap="BaseResultMap">
    select
    *
    from
    location_users
  </select>

  <insert id="insert" parameterType="com.sunyo.energy.location.model.LocationUsers" >
    insert into location_users (username, phone, wmId, 
      eeId)
    values (#{username,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{wmid,jdbcType=VARCHAR}, 
      #{eeid,jdbcType=VARCHAR})
  </insert>
  <insert id="insertSelective" parameterType="com.sunyo.energy.location.model.LocationUsers" >
    insert into location_users
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="username != null" >
        username,
      </if>
      <if test="phone != null" >
        phone,
      </if>
      <if test="wmid != null" >
        wmId,
      </if>
      <if test="eeid != null" >
        eeId,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="username != null" >
        #{username,jdbcType=VARCHAR},
      </if>
      <if test="phone != null" >
        #{phone,jdbcType=VARCHAR},
      </if>
      <if test="wmid != null" >
        #{wmid,jdbcType=VARCHAR},
      </if>
      <if test="eeid != null" >
        #{eeid,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
</mapper>