From a660db06773007b1be690e0674829c00a57aeb7b Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 24 十二月 2025 16:21:23 +0800
Subject: [PATCH] 订单首页流程卡新增楼层编号显示
---
north-glass-erp/src/main/java/com/example/erp/mapper/sd/ProductMapper.java | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/mapper/sd/ProductMapper.java b/north-glass-erp/src/main/java/com/example/erp/mapper/sd/ProductMapper.java
index b3d2ca5..4827b51 100644
--- a/north-glass-erp/src/main/java/com/example/erp/mapper/sd/ProductMapper.java
+++ b/north-glass-erp/src/main/java/com/example/erp/mapper/sd/ProductMapper.java
@@ -12,7 +12,15 @@
List<Product> defaultProduct(@Param("offset") Integer offset,
@Param("pageSize") Integer pageSiz,
@Param("glassTypeId") String glassTypeId,
- @Param("product") Product product);
+ @Param("product") Product product,String field, String orderBy);
Integer getPageTotal(Integer offset, Integer pageSize, String glassTypeId, Product product);
+
+ boolean updateProductStateById(Integer id,Integer state);
+
+ List<Product> selectProduct(@Param("productName") String productName,@Param("productNameValue") String productNameValue);
+
+ List<Product> selectProductId(@Param("productName") String productName,@Param("productNameValue") String productNameValue,@Param("id") Long id);
+
+ Double getGlassThickness(Integer productId, Integer technologyNumber);
}
--
Gitblit v1.8.0