update 联联平台相关实体字段修改

This commit is contained in:
Lemon
2023-04-03 15:46:07 +08:00
parent 55aaaf4981
commit 4532b60192
11 changed files with 89 additions and 89 deletions

View File

@@ -20,37 +20,37 @@ public class OrderInfo {
* 对接平台ID Y
* 组织机构代码
*/
private String OperatorID;
private String organizationCode;
/**
* 设备所属运营商ID Y
* 设备所属运营商组织机构代码
*/
private String EquipmentOwnerID;
private String merchantId;
/**
* 充电站ID Y
* 对接平台自定义的唯一编码
*/
private String StationID;
private String stationId;
/**
* 设备编码 Y
* 设备唯一编码,对同一对接平台,保证唯一
*/
private String EquipmentID;
private String pileSn;
/**
* 充电设备接口编码 Y
* 充电设备接口编码,同一对接平台内唯一
*/
private String ConnectorID;
private String pileConnectorCode;
/**
* 充电订单号 Y
* 对接平台系统订单编号
*/
private String StartChargeSeq;
private String orderCode;
/**
* 用户发起充电类型 Y
@@ -59,56 +59,56 @@ public class OrderInfo {
* 3互联互通用户
* 10:其他
*/
private Integer UserChargeType;
private Integer userType;
/**
* 用户手机号 N
* 若用户发起充电类型为 APP用户手机号必填
*/
private String MobileNumber;
private String userPhoneNumber;
/**
* 本次充电消费总金额(单位:元,保留小数点后2位) Y
*/
private BigDecimal Money;
private BigDecimal orderAmount;
/**
* 本次充电电费总金额(单位:元,保留小数点后2位) Y
*/
private BigDecimal ElectMoney;
private BigDecimal electricityAmount;
/**
* 本次充电服务费金额(单位:元,保留小数点后2位) Y
*/
private BigDecimal ServiceMoney;
private BigDecimal serviceAmount;
/**
* 本次充电电量 Y
* 单位kWh精度0.01,保留小数点后2位
*/
private BigDecimal Elect;
private BigDecimal usedElectricity;
/**
* 本次充电开始时间 Y
* 格式“yyyy-MM-dd HH:mm:ss”
*/
private String StartTime;
private String chargingStartTime;
/**
* 本次充电结束时间 Y
* 格式“yyyy-MM-dd HH:mm:ss”
*/
private String EndTime;
private String chargingEndTime;
/**
* 支付金额 Y
*/
private BigDecimal PaymentAmount;
private BigDecimal payAmount;
/**
* 支付时间 N
*/
private String PayTime;
private String payTime;
/**
* 支付方式 Y
@@ -119,13 +119,13 @@ public class OrderInfo {
* 5银联
* 6其他自定义
*/
private Integer PayChannel;
private Integer payMode;
/**
* 优惠信息描述 N
* 描述支付的相关优惠信息,如优惠券,折扣等
*/
private String DiscountInfo;
private String discountDescribe;
/**
* 充电结束原因 Y
@@ -136,15 +136,15 @@ public class OrderInfo {
* 4:连接器断开
* 5-99自定义
*/
private Integer StopReason;
private Integer stopReason;
/**
* 时段数N,范围032 N
*/
private Integer SumPeriod;
private Integer timePeriod;
/**
* 充电明细信息 Y
*/
private List<ChargeDetail> ChargeDetails;
private List<ChargeDetail> chargeDetails;
}