From e2845ce9915ae0272490f252cfdee3fa447e9402 Mon Sep 17 00:00:00 2001 From: wuchunlei Date: Fri, 13 Jun 2025 10:00:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E7=8F=AD=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/master/controller/TrainingClassController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/peanut/modules/master/controller/TrainingClassController.java b/src/main/java/com/peanut/modules/master/controller/TrainingClassController.java index 65ac5c7e..4452a9a0 100644 --- a/src/main/java/com/peanut/modules/master/controller/TrainingClassController.java +++ b/src/main/java/com/peanut/modules/master/controller/TrainingClassController.java @@ -148,7 +148,7 @@ public class TrainingClassController { titleRow.createCell(3).setCellValue("报名时间"); titleRow.createCell(4).setCellValue("用户身份"); titleRow.createCell(5).setCellValue("支付方式"); - titleRow.createCell(6).setCellValue("抵扣方式"); + titleRow.createCell(6).setCellValue("积分抵扣"); titleRow.createCell(7).setCellValue("订单号"); //序号,默认为1 int cell = 1; @@ -160,7 +160,7 @@ public class TrainingClassController { row.createCell(2).setCellValue(toUser.getUser().getEmail()); row.createCell(3).setCellValue(DateUtils.format(toUser.getCreateTime(),"yyyy-MM-dd HH:mm:ss")); row.createCell(4).setCellValue(toUser.getIdentity()); - row.createCell(5).setCellValue(toUser.getPayMethod()); + row.createCell(5).setCellValue(toUser.getPayMethod()+":"+toUser.getRealMoney()); row.createCell(6).setCellValue(toUser.getJfDeduction()); row.createCell(7).setCellValue(toUser.getOrderSn()); //序号自增