Browse Source

feature 返回缴费记录ID

xiahan 4 months ago
parent
commit
4f9958a1bd

+ 3 - 2
zhsw-common/src/main/java/com/rongwei/zhsw/system/service/impl/SwBillingRecordServiceImpl.java

@@ -99,8 +99,9 @@ public class SwBillingRecordServiceImpl extends ServiceImpl<SwBillingRecordDao,
             e.printStackTrace();
             return R.error("窗口缴费失败");
         }
-
-        return R.ok(billRecordId);
+        R ok = R.ok();
+        ok.putData(billRecordId);
+        return ok;
     }
 
     /**