From 6cc45ce9e23eae92a115abf9eb531a22b01db7e0 Mon Sep 17 00:00:00 2001 From: rentaiming <806181062@qq.com> Date: 星期一, 08 七月 2024 18:11:42 +0800 Subject: [PATCH] 森林防火 供应商管理 --- ruoyi-modules/ruoyi-management/target/classes/mapper/management/ManagementGoodsMaterialsMapper.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/ruoyi-modules/ruoyi-management/target/classes/mapper/management/ManagementGoodsMaterialsMapper.xml b/ruoyi-modules/ruoyi-management/target/classes/mapper/management/ManagementGoodsMaterialsMapper.xml new file mode 100644 index 0000000..721d034 --- /dev/null +++ b/ruoyi-modules/ruoyi-management/target/classes/mapper/management/ManagementGoodsMaterialsMapper.xml @@ -0,0 +1,22 @@ +<?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.rouyi.management.mapper.ManagementGoodsMaterialsMapper"> + + <!-- 通用查询映射结果 --> + <resultMap id="BaseResultMap" type="com.ruoyi.management.domain.ManagementGoodsMaterials"> + <id column="id" property="id" /> + <result column="repertory_sum" property="repertorySum" /> + <result column="repertory_zhai" property="repertoryZhai" /> + <result column="repertory_chu" property="repertoryChu" /> + <result column="repertory_yishi" property="repertoryYishi" /> + <result column="check_num" property="checkNum" /> + <result column="management_id" property="managementId" /> + <result column="goods_materials_id" property="goodsMaterialsId" /> + <result column="del_flag" property="delFlag" /> + <result column="create_by" property="createBy" /> + <result column="create_time" property="createTime" /> + <result column="update_by" property="updateBy" /> + <result column="update_time" property="updateTime" /> + </resultMap> + +</mapper> -- Gitblit v1.7.1