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,