From 0844d7f271f0e036638f596706ca1b58c5d5512a Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 22 三月 2024 10:01:56 +0800
Subject: [PATCH] 添加流程卡查询明细数据,流程卡进度报表相关代码

---
 north-glass-erp/src/main/resources/mapper/pp/Report.xml |   57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/pp/Report.xml b/north-glass-erp/src/main/resources/mapper/pp/Report.xml
new file mode 100644
index 0000000..703b4fe
--- /dev/null
+++ b/north-glass-erp/src/main/resources/mapper/pp/Report.xml
@@ -0,0 +1,57 @@
+<?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.example.erp.mapper.pp.ReportMapper">
+    <resultMap id="flowCardMap" type="com.example.erp.entity.pp.FlowCard">
+        <result column="order_id" property="orderId"/>
+        <result column="process_Id" property="processId"/>
+        <result column="quantity" property="quantity"/>
+        <result column="founder" property="founder"/>
+        <result column="create_time" property="createTime"/>
+        <result column="layout_status" property="layoutStatus"/>
+        <!--鎺ユ敹鍏朵粬澶栭敭瀹炰綋绫绘暟鎹�-->
+        <association property="order" javaType="com.example.erp.entity.sd.Order">
+            <result column="project" property="project"/>
+            <result column="order_id" property="orderId"/>
+            <result column="customer_name" property="customerName"/>
+            <result column="batch" property="batch"/>
+            <result column="other_remarks" property="otherRemarks"/>
+            <result column="icon" property="icon"/>
+            <result column="order_type" property="orderType"/>
+            <result column="salesman" property="salesman"/>
+            <result column="processing_note" property="processingNote"/>
+            <result column="delivery_address" property="deliveryAddress"/>
+        </association>
+        <association property="orderDetail" javaType="com.example.erp.entity.sd.OrderDetail">
+            <result column="product_id" property="productId"/>
+            <result column="product_name" property="productName"/>
+            <result column="compute_gross_area" property="computeGrossArea"/>
+            <result column="processing_note" property="processingNote"/>
+            <result column="quantity" property="quantity"/>
+            <result column="compute_gross_area" property="computeGrossArea"/>
+            <result column="perimeter" property="perimeter"/>
+            <result column="order_number" property="orderNumber"/>
+            <result column="width" property="width"/>
+            <result column="height" property="height"/>
+            <result column="shape" property="shape"/>
+            <result column="weight" property="weight"/>
+        </association>
+        <association property="orderGlassDetail" javaType="com.example.erp.entity.sd.OrderGlassDetail">
+            <result column="production_id" property="productionId"/>
+        </association>
+        <association property="product" javaType="com.example.erp.entity.sd.Product">
+            <result column="total_thickness" property="totalThickness"/>
+            <result column="thickness" property="thickness"/>
+        </association>
+
+        <!--<result column="g_typeId" property="glassTypes.typeId"/>
+        <result column="g_type" property="glassTypes.type"/>-->
+
+    </resultMap>
+
+<!--    娴佺▼鍗¤繘搴�-->
+    <select id="processCardProgressMp">
+
+    </select>
+</mapper>
\ No newline at end of file

--
Gitblit v1.8.0