From 127ab1d4d0a7fe3e4fc6dd81845e5a9c5327a5a2 Mon Sep 17 00:00:00 2001 From: 李白 <7387820+wjli_13439841639@user.noreply.gitee.com> Date: 星期四, 07 五月 2026 11:03:22 +0800 Subject: [PATCH] 客商、销售员、产品、排产计划后台增删改查功能 --- platformx-business-finance-biz/src/main/resources/mapper/ProductMapper.xml | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/platformx-business-finance-biz/src/main/resources/mapper/ProductMapper.xml b/platformx-business-finance-biz/src/main/resources/mapper/ProductMapper.xml new file mode 100644 index 0000000..aa2b472 --- /dev/null +++ b/platformx-business-finance-biz/src/main/resources/mapper/ProductMapper.xml @@ -0,0 +1,21 @@ +<?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.by4cloud.platformx.business.mapper.ProductMapper"> + + <resultMap id="productMap" type="com.by4cloud.platformx.business.entity.Product"> + <id property="id" column="id"/> + <result property="categoryId" column="category_id"/> + <result property="productName" column="product_name"/> + <result property="erpCode" column="erp_code"/> + <result property="mainCode" column="main_code"/> + <result property="price" column="price"/> + <result property="taxRate" column="tax_rate"/> + <result property="compId" column="comp_id"/> + <result property="createBy" column="create_by"/> + <result property="createTime" column="create_time"/> + <result property="updateBy" column="update_by"/> + <result property="updateTime" column="update_time"/> + <result property="delFlag" column="del_flag"/> + </resultMap> +</mapper> \ No newline at end of file -- Gitblit v1.9.1