From 11acaaf1e2e5e71dff57a788fb26b263bcd117b7 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 01 十一月 2024 20:16:31 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TChargingOrder.java | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TChargingOrder.java b/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TChargingOrder.java index a548f5d..e350f71 100644 --- a/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TChargingOrder.java +++ b/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TChargingOrder.java @@ -31,6 +31,9 @@ @ApiModelProperty(value = "主键") @TableId(value = "id", type = IdType.NONE) private Long id; + @ApiModelProperty(value = "序号") + @TableField(exist = false) + private Integer xuhao; @ApiModelProperty(value = "订单编号") @TableField("code") @@ -68,6 +71,7 @@ @ApiModelProperty(value = "站点 id") @TableField("site_id") private Integer siteId; + @ApiModelProperty(value = "停车场id") @TableField("parking_lot_id") @@ -158,6 +162,10 @@ @ApiModelProperty(value = "退款流水号") @TableField("refund_code") private String refundCode; + + @ApiModelProperty(value = "标题") + @TableField("title") + private String title; @ApiModelProperty(value = "退款原因") @TableField(exist = false) private String refundReason; @@ -173,6 +181,18 @@ @ApiModelProperty(value = "累计电费") @TableField("electrovalence") private BigDecimal electrovalence; + @ApiModelProperty(value = "电流") + @TableField("current") + private BigDecimal current; + @ApiModelProperty(value = "电压") + @TableField("voltage") + private BigDecimal voltage; + @ApiModelProperty(value = "电量") + @TableField("electricity") + private BigDecimal electricity; + @ApiModelProperty(value = "功率") + @TableField("power") + private BigDecimal power; @ApiModelProperty(value = "退款状态(1=退款中,2=退款成功)") @TableField("refund_status") @@ -186,7 +206,9 @@ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @TableField("refund_time") private LocalDateTime refundTime; - + @ApiModelProperty(value = "总电量") + @TableField("total_electricity") + private BigDecimal totalElectricity; @ApiModelProperty(value = "支付时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @@ -210,6 +232,9 @@ @ApiModelProperty(value = "支付方式") @TableField(exist = false) private String rechargePaymentType1; + @ApiModelProperty(value = "支付平台") + @TableField(exist = false) + private String payPlatform; @ApiModelProperty(value = "充电启动方式") @TableField(exist = false) private String chargingType; @@ -222,6 +247,9 @@ @ApiModelProperty(value = "充电费用") @TableField(exist = false) private String totalAmount; + @ApiModelProperty(value = "合计") + @TableField(exist = false) + private BigDecimal total; @ApiModelProperty(value = "优惠抵扣") @TableField(exist = false) private String discount; -- Gitblit v1.7.1