From 423ac2a5e7e451248d8cdfc2cda3f32dba0ec8f8 Mon Sep 17 00:00:00 2001 From: gongchunyi <deslre0381@gmail.com> Date: 星期三, 11 三月 2026 17:59:52 +0800 Subject: [PATCH] feat: 生产计划关联物料信息表 --- src/main/resources/mapper/production/ProductMaterialMapper.xml | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/production/ProductMaterialMapper.xml b/src/main/resources/mapper/production/ProductMaterialMapper.xml new file mode 100644 index 0000000..84d8ca4 --- /dev/null +++ b/src/main/resources/mapper/production/ProductMaterialMapper.xml @@ -0,0 +1,25 @@ +<?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="materialTypeId" column="material_type_id"/> + <result property="inventoryCategoryId" column="inventory_category_id"/> + <result property="identifierCode" column="identifier_code"/> + <result property="materialCode" column="material_code"/> + <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> \ No newline at end of file -- Gitblit v1.9.3