From e50d4b565e720f44459b80d0319fa4077dddd971 Mon Sep 17 00:00:00 2001 From: lzh Date: Sun, 8 Jan 2023 20:36:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BB=9F=E8=AE=A1=E5=BA=93?= =?UTF-8?q?=E5=AD=98=E5=95=86=E5=93=81=E6=95=B0=E9=87=8F=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supervise/portal/biz/gdinventory/GdInventoryOkMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java b/yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java index 8205df31..ad0b576c 100644 --- a/yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java +++ b/yxt_supervise/supervise-portal/supervise-portal-biz/src/main/java/com/yxt/supervise/portal/biz/gdinventory/GdInventoryOkMapper.java @@ -96,6 +96,6 @@ public interface GdInventoryOkMapper extends BaseMapper { @Select("select IFNULL(sum(prodValue),0) from gd_inventory_ok where warehouseCode='199'") double countVal199(); - @Select("select prodCode,IFNULL(sum(prodNum),0) pnum from gd_inventory_ok group by prodCode") + @Select("select prodCode,CONVERT(IFNULL(sum(prodNum),0),CHAR) pnum from gd_inventory_ok group by prodCode") List> numberOfProduct(); }