testU8.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="net.chenlin.dp.modules.sys.dao.TestU8Mapper">
  4. <select id="testAll" resultType="int">
  5. SELECT
  6. count(1)
  7. FROM
  8. AA_Bank
  9. </select>
  10. <select id="callProductIn" parameterType="map" statementType="CALLABLE">
  11. {
  12. call product_In(
  13. #{upTime, mode=IN, jdbcType=VARCHAR}
  14. )
  15. }
  16. </select>
  17. <select id="callProMaxClassIn" parameterType="map" statementType="CALLABLE">
  18. {
  19. call ProMaxClass_In
  20. }
  21. </select>
  22. <select id="callProMinClassIn" parameterType="map" statementType="CALLABLE">
  23. {
  24. call ProMinClass_In
  25. }
  26. </select>
  27. <select id="callCurrentStockJiangSu" parameterType="map" statementType="CALLABLE">
  28. {
  29. call CurrentStock_jiangSu
  30. }
  31. </select>
  32. <select id="callCurrentStockShanDong" parameterType="map" statementType="CALLABLE">
  33. {
  34. call CurrentStock_shanDong
  35. }
  36. </select>
  37. <select id="callSaleBack" parameterType="map" statementType="CALLABLE">
  38. {
  39. call sale_Back
  40. }
  41. </select>
  42. </mapper>