From d97271233e59a252e7080b0193a1a385c0391eae Mon Sep 17 00:00:00 2001 From: liangkun Date: Sun, 27 Aug 2023 00:10:17 +0800 Subject: [PATCH] =?UTF-8?q?fzp=20=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalSchoolApi/Controllers/PayFeeResultTwoController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DigitalSchoolApi/Controllers/PayFeeResultTwoController.cs b/DigitalSchoolApi/Controllers/PayFeeResultTwoController.cs index 7bd4357..13ff4c0 100644 --- a/DigitalSchoolApi/Controllers/PayFeeResultTwoController.cs +++ b/DigitalSchoolApi/Controllers/PayFeeResultTwoController.cs @@ -80,11 +80,11 @@ namespace DigitalSchoolApi.Controllers List stuorderlist = null; if (isexcel) { - stuorderlist = conn.Query("select stuno,yearno,orderid from FinaChargeStuOrder where Status=1 OrderType=2").ToList(); + stuorderlist = conn.Query("select stuno,yearno,orderid from FinaChargeStuOrder where Status=1 and OrderType=2").ToList(); } else { - stuorderlist = conn.Query("select stuno,yearno,orderid from FinaChargeStuOrder where Status=1 OrderType=1").ToList(); + stuorderlist = conn.Query("select stuno,yearno,orderid from FinaChargeStuOrder where Status=1 and OrderType=1").ToList(); } foreach (var stuorderEntity in stuorderlist) { @@ -155,7 +155,7 @@ namespace DigitalSchoolApi.Controllers string PAYMENT_MONEY = item.SJAmount.ToString(); string ORDER_STATUS = "1"; string TRAN_DATE = DateTime.Now.ToString(); - string PAY_MODE = "alipay"; + string PAY_MODE = "ZFB"; string OriOvrlsttnEV_Trck_No = "test001"; string Orderid = item.orderid; string REM1 = item.StuNo;