| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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="net.chenlin.dp.modules.sys.dao.TestU8Mapper">
-
- <select id="testAll" resultType="int">
- SELECT
- count(1)
- FROM
- AA_Bank
- </select>
- <select id="callProductIn" parameterType="map" statementType="CALLABLE">
- {
- call product_In(
- #{upTime, mode=IN, jdbcType=VARCHAR}
- )
- }
- </select>
- <select id="callProMaxClassIn" parameterType="map" statementType="CALLABLE">
- {
- call ProMaxClass_In
- }
- </select>
- <select id="callProMinClassIn" parameterType="map" statementType="CALLABLE">
- {
- call ProMinClass_In
- }
- </select>
- <select id="callCurrentStockJiangSu" parameterType="map" statementType="CALLABLE">
- {
- call CurrentStock_jiangSu
- }
- </select>
- <select id="callCurrentStockShanDong" parameterType="map" statementType="CALLABLE">
- {
- call CurrentStock_shanDong
- }
- </select>
- <select id="callSaleBack" parameterType="map" statementType="CALLABLE">
- {
- call sale_Back
- }
- </select>
- </mapper>
|