From 3374dbd3e9801eebe1973c049bee48d18c8abb6e Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Wed, 12 Nov 2025 14:40:42 +0800 Subject: [PATCH] =?UTF-8?q?2025-11-12=20=E6=B5=8B=E8=AF=95=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=A2=9E=E5=8A=A0=E5=B7=A5=E5=8D=95=E5=8F=B7=E5=92=8C?= =?UTF-8?q?=E6=9D=90=E6=96=99=E6=80=BB=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../spring/modules/test/entity/TestInformationEntity.java | 5 +++++ src/main/resources/mapper/test/TestInformationMapper.xml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/main/java/com/spring/modules/test/entity/TestInformationEntity.java b/src/main/java/com/spring/modules/test/entity/TestInformationEntity.java index a48782dc..55ec416c 100644 --- a/src/main/java/com/spring/modules/test/entity/TestInformationEntity.java +++ b/src/main/java/com/spring/modules/test/entity/TestInformationEntity.java @@ -7,6 +7,7 @@ import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; +import java.math.BigDecimal; import java.util.Date; import java.util.List; @@ -186,4 +187,8 @@ public class TestInformationEntity extends QueryPage implements Serializable { private Integer rejectStepId; private String soNumber; + /** + * 材料总金额 + */ + private BigDecimal materialTotalAmount; } diff --git a/src/main/resources/mapper/test/TestInformationMapper.xml b/src/main/resources/mapper/test/TestInformationMapper.xml index 170ea770..99916177 100644 --- a/src/main/resources/mapper/test/TestInformationMapper.xml +++ b/src/main/resources/mapper/test/TestInformationMapper.xml @@ -56,6 +56,7 @@ d.node_id, d.node_name, a.so_number, + a.material_total_amount, dbo.plm_get_user_display(a.site, d.create_by) as node_create_by, vpp.bu_no, b.bu_desc, @@ -191,6 +192,7 @@ pti.update_by, pti.print_type, pti.product_name, + pti.material_total_amount, pcpi.customer_part_no, vpp.final_part_no, d.node_name, @@ -393,6 +395,7 @@ d.node_id, d.node_name, a.so_number, + a.material_total_amount, dbo.plm_get_user_display(a.site, d.create_by) as node_create_by, vpp.bu_no, b.bu_desc,