Blame view

src/main/resources/mybatis/receipt/WorkOrderListMapper.xml 861 Bytes
1
2
<?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">
3
4
<mapper namespace="com.huaheng.pc.receipt.workOrderDetail.mapper.WorkOrderDetailMapper">
    <resultMap id="BaseResultMap" type="com.huaheng.pc.receipt.workOrderDetail.domain.WorkOrderDetail">
5
6
7
8
9
10
11
12
13
        <!--@mbg.generated-->
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="workId" jdbcType="INTEGER" property="workId" />
        <result column="materialCode" jdbcType="VARCHAR" property="materialCode" />
        <result column="materialQty" jdbcType="DECIMAL" property="materialQty" />
        <result column="shipmentReferQty" jdbcType="DECIMAL" property="shipmentReferQty" />
        <result column="isMaterial" jdbcType="BIT" property="isMaterial" />
    </resultMap>
</mapper>