From e0fc8f7e2230b51e3bbe8dea43790cf11b7170e9 Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期一, 04 十一月 2024 15:39:01 +0800
Subject: [PATCH] merge

---
 ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TParkingRecord.java |   23 +++++++++++++++++++----
 1 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TParkingRecord.java b/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TParkingRecord.java
index b6cd84b..ee04672 100644
--- a/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TParkingRecord.java
+++ b/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TParkingRecord.java
@@ -36,14 +36,19 @@
     @ApiModelProperty(value = "用户id")
     @TableField("app_user_id")
     private Long appUserId;
+    
+    @ApiModelProperty(value = "订单标题")
+    @TableField("title")
+    private String title;
+
+    @ApiModelProperty(value = "停车场名称")
+    @TableField("name")
+    private String name;
 
     @ApiModelProperty(value = "车牌号")
     @TableField("license_plate")
     private String licensePlate;
-    
-    @TableField(exist = false)
-    private String name;
-    
+
     @TableField(exist = false)
     private String uid;
     
@@ -80,6 +85,14 @@
     @ApiModelProperty(value = "总费用")
     @TableField("order_amount")
     private BigDecimal orderAmount;
+    
+    @ApiModelProperty(value = "支付金额")
+    @TableField("payment")
+    private BigDecimal payment;
+    
+    @ApiModelProperty(value = "支付方式")
+    @TableField("payType")
+    private String payType;
 
     @ApiModelProperty(value = "状态(1=已进场,2=已出场,3=已缴费出场)")
     @TableField("status")
@@ -114,5 +127,7 @@
     @TableField("serialnumber")
     private String serialnumber;
 
+    @TableField(exist = false)
+    private String parkName;
 
 }

--
Gitblit v1.7.1