Subversion Repositories SmartDukaan

Rev

Rev 3088 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?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="in.shop2020.crm.persistence.AgentMapper">
  <resultMap type="agent" id="agentResult">
    <id property="id" column="id"/>
  </resultMap>
  
  <select id="getAgent" parameterType="long" resultType="agent">
    SELECT * FROM agent
    WHERE id = #{agentId}
  </select>

  <select id="getAgentByEmailId" parameterType="String" resultType="agent">
    SELECT * FROM agent
    WHERE emailId = #{emailId}
  </select>
</mapper>