王佳豪
2021-05-05 c81332c3a4effcc55f68ecff8abb7f3fc5158de8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.zy.asrs.mapper.OutStockMainMapper">
    <!-- OutStockBill映射结果 -->
    <resultMap id="OutStockMainResultMap" type="com.zy.common.service.erp.entity.OutStockBill">
        <result column="FBrNo" property="FBrNo"/>
        <result column="FInterID" property="FInterID"/>
    </resultMap>
 
 
    <select id="queryOutStockMain" resultMap="OutStockMainResultMap">
        select * from OutStockBill
    </select>
</mapper>