From 05981a8e1db6adcb3dc79907fc22453fb2e51230 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期日, 24 九月 2023 18:30:28 +0800
Subject: [PATCH] 销售订单导出

---
 inspect-server/src/main/resources/mapper/FinishedInspectMapper.xml |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/inspect-server/src/main/resources/mapper/FinishedInspectMapper.xml b/inspect-server/src/main/resources/mapper/FinishedInspectMapper.xml
index 1c6c3a0..1030be2 100644
--- a/inspect-server/src/main/resources/mapper/FinishedInspectMapper.xml
+++ b/inspect-server/src/main/resources/mapper/FinishedInspectMapper.xml
@@ -1,6 +1,12 @@
 <?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.yuanchu.mom.mapper.FinishedInspectMapper">
+    <!--娓呯┖妫�楠岀姸鎬�-->
+    <update id="updById">
+        update mom_ocean.finished_inspect
+        set result=null
+        where id = #{rawInspectId}
+    </update>
     <select id="selectFinishedInspectPage" resultType="map">
         SELECT f.`id`,
         f.`order_number`,
@@ -62,6 +68,7 @@
         <id property="name" column="order_number"/>
         <result property="customerName" column="customer_name"/>
         <result property="projectName" column="project_name"/>
+        <result property="techId" column="tech_id"/>
         <result property="qualityTraceability" column="quality_traceability"/>
         <result property="materialCode" column="material_code"/>
         <result property="material" column="material"/>
@@ -90,6 +97,7 @@
         select order_number,
                customer_name,
                project_name,
+               tech_id,
                quality_traceability,
                material_code,
                material,

--
Gitblit v1.9.3