Subversion Repositories SmartDukaan

Rev

Rev 3088 | Rev 3339 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3088 Rev 3137
Line 38... Line 38...
38
  <update id="updatePasswordForAgent" parameterType="map">
38
  <update id="updatePasswordForAgent" parameterType="map">
39
    UPDATE agent
39
    UPDATE agent
40
    SET password = #{password}
40
    SET password = #{password}
41
    WHERE emailId = #{emailId}
41
    WHERE emailId = #{emailId}
42
  </update>
42
  </update>
-
 
43
  
-
 
44
  <select id="getReportees" parameterType="long" resultType="agent">
-
 
45
    SELECT * FROM agent
-
 
46
    WHERE managerId = #{agentId}
-
 
47
  </select>
43
</mapper>
48
</mapper>
44
49