Subversion Repositories SmartDukaan

Rev

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

Rev 4500 Rev 5361
Line 21... Line 21...
21
    <if test="scanType != null">
21
    <if test="scanType != null">
22
        AND type = #{scanType}
22
        AND type = #{scanType}
23
    </if>
23
    </if>
24
    ORDER BY scannedAt
24
    ORDER BY scannedAt
25
  </select>
25
  </select>
-
 
26
 
-
 
27
  <select id="getScansFromOrderId" parameterType="java.lang.Long" resultType="scan">
-
 
28
    SELECT * 
-
 
29
    FROM scanNew
-
 
30
    WHERE orderId = #{orderId}
-
 
31
    ORDER BY scannedAt
-
 
32
  </select>
26
</mapper>
33
</mapper>