From e55c8b0a92eb9715edd90c31dfd4de51a47b588b Mon Sep 17 00:00:00 2001
From: liuhaonan <31457034@qq.com>
Date: 星期五, 04 十一月 2022 17:40:08 +0800
Subject: [PATCH] changes

---
 dao/src/main/java/com/sandu/ximon/dao/domain/C3mOrder.java |  153 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 153 insertions(+), 0 deletions(-)

diff --git a/dao/src/main/java/com/sandu/ximon/dao/domain/C3mOrder.java b/dao/src/main/java/com/sandu/ximon/dao/domain/C3mOrder.java
new file mode 100644
index 0000000..e6bbe72
--- /dev/null
+++ b/dao/src/main/java/com/sandu/ximon/dao/domain/C3mOrder.java
@@ -0,0 +1,153 @@
+package com.sandu.ximon.dao.domain;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import lombok.Data;
+
+import java.io.Serializable;
+
+/**
+ * C3璁㈠崟琛�
+ *
+ * @TableName c3_order
+ */
+@TableName(value = "c3_order")
+@Data
+public class C3mOrder implements Serializable {
+
+    public static String REQUEST_URL = "http://www.ximonsmart.com/charge/#/charge/";
+    /**
+     * 璁㈠崟ID
+     */
+    @TableId
+    private Long orderId;
+
+    /**
+     * 鐏潌ID
+     */
+    private Long poleId;
+
+    /**
+     * 瀵瑰簲鐨勭伅鏉嗚澶噈ac
+     */
+    private String poleMac;
+
+    /**
+     * 鐏潌鍚嶇О
+     */
+    private String poleName;
+
+    /**
+     * 鍏呯數妗㎝AC
+     */
+    private String c3Mac;
+
+    /**
+     * 鍏呯數妗╁悕绉�
+     */
+    private String c3Name;
+
+    /**
+     * udid
+     */
+    private String c3Udid;
+
+    /**
+     * 璁㈠崟鍟嗘埛鍙�
+     */
+    private String outTradeNo;
+
+    /**
+     * 璁㈠崟绫诲瀷(C3mOrderType)
+     */
+    private String orderType;
+
+    /**
+     * 璁㈠崟鎬婚噾棰�
+     */
+    private Double totalAmount;
+
+    /**
+     * 鍓╀綑閲戦
+     */
+    private Double surplusAmount;
+
+    /**
+     * 閫�娆�
+     */
+    private Double refundAmount;
+
+    /**
+     * 涔板甯愬彿(鏀粯瀹�)
+     */
+    private String aliBuyerLogonId;
+
+    /**
+     * 棰勭害鐢甸噺
+     */
+    private Integer subscribeChargingCapacity;
+
+    /**
+     * 瀹炲厖鐢甸噺  鍓嶇鏄剧ず
+     */
+    private Double actualChargingCapacity;
+
+    /**
+     * 瀹炲厖鐢甸噺  鍚庣璁$畻鐢�    涓昏鐢ㄤ簬寮傚父鎯呭喌涓嬬殑鍏呯數鐢甸噺璁板綍
+     */
+    @JsonIgnore
+    private Double actualChargingCapacityHide;
+
+    /**
+     * 璁㈠崟鍒涘缓鏃堕棿鎴�
+     */
+    private Long createTimestamp;
+
+    /**
+     * 璁㈠崟鏀粯鏃堕棿鎴�
+     */
+    private Long payTimestamp;
+
+    /**
+     * 璁㈠崟閫�娆炬椂闂存埑
+     */
+    private Long refundTimestamp;
+
+    /**
+     * 璁㈠崟閫�娆捐鏄�
+     */
+    private String refundMsg;
+
+    /**
+     * 寮�濮嬪厖鐢垫椂闂存埑
+     */
+    private Long startChargingTimestamp;
+
+    /**
+     * 缁撴潫鍏呯數鏃堕棿鎴�
+     */
+    private Long stopChargingTimestamp;
+
+    /**
+     * 璁㈠崟鐘舵�侊細// 宸叉敮浠�(1),宸查��娆�(3),閫�娆句腑(2),閫�娆惧け璐�5),璁㈠崟瀹屾垚(4)
+     */
+    private Integer orderStatus;
+
+
+    private String alreadyChargingTime;
+
+    /**
+     * 0 鍏呯數涓�   1鍏呯數缁撴潫
+     */
+    private Integer chargingStates;
+
+    /**
+     * 鐢ㄦ埛鏍囪瘑
+     */
+    private String userCode;
+
+    @TableField(exist = false)
+    private static final long serialVersionUID = 1L;
+}
\ No newline at end of file

--
Gitblit v1.9.3