123456789101112131415161718192021 |
- <?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="com.steerinfo.weight.gxmes.mapper.GxWeightMapper">
- <resultMap id="BaseResultMap" type="com.steerinfo.weight.gxmes.model.GxWeight">
- <id column="TYPES" jdbcType="VARCHAR" property="type"/>
- <id column="QTY" jdbcType="DECIMAL" property="weight"/>
- <id column="PRODATE" jdbcType="VARCHAR" property="prodate"/>
- <id column="MATERIALCODE" jdbcType="VARCHAR" property="materialcode"/>
- <id column="MATERIALNAME" jdbcType="VARCHAR" property="materialname"/>
- <id column="UNIT" jdbcType="VARCHAR" property="unit"/>
- <id column="FID" jdbcType="VARCHAR" property="fid"/>
- <id column="LC_ID" jdbcType="VARCHAR" property="roundid"/>
- <id column="REMARK" jdbcType="VARCHAR" property="remark"/>
- </resultMap>
- <select id="QueryWeightforRound" parameterType="java.lang.String" resultMap="BaseResultMap">
- select * from table(gxmes.EMS_GX_ROLLDESIGN_V2304(#{startTime},#{endTime}))
- </select>
- <select id="QueryWeightforRound2" parameterType="java.lang.String" resultMap="BaseResultMap">
- select * from table(gxmes.EMS_GX_ROLLDESIGN2_V2304(#{startTime},#{endTime}))
- </select>
- </mapper>
|