<?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.ruoyi.production.mapper.ProductMaterialMapper">
|
<resultMap id="ProductMaterialResultMap" type="com.ruoyi.production.pojo.ProductMaterial">
|
<id property="id" column="id"/>
|
<result property="tenantId" column="tenant_id"/>
|
<result property="materialType" column="material_type"/>
|
<result property="inventoryCategory" column="inventory_category"/>
|
<result property="identifierCode" column="identifier_code"/>
|
<result property="materialCode" column="material_code"/>
|
<result property="productName" column="product_name"/>
|
<result property="materialName" column="material_name"/>
|
<result property="specification" column="specification"/>
|
<result property="baseUnit" column="base_unit"/>
|
<result property="materialAttribute" column="material_attribute"/>
|
<result property="finishedProductName" column="finished_product_name"/>
|
<result property="originatorName" column="originator_name"/>
|
<result property="originatorOrg" column="originator_org"/>
|
<result property="remark" column="remark"/>
|
<result property="createTime" column="create_time"/>
|
<result property="updateTime" column="update_time"/>
|
</resultMap>
|
|
</mapper>
|