package com.sandu.ximon.dao.bo; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; /** * @author LiuHaoNan * @date 2022/6/28 * 订单列表字段 */ @Data public class C3mOrderBo { /** * 订单ID */ private Long orderId; /** * 灯杆ID */ private Long poleId; /** * 对应的灯杆设备mac */ private String poleMac; /** * 订单商户号 */ private String outTradeNo; /** * 订单总金额 */ private Double totalAmount; /** * 实收金额 */ private Double receiptAmount; /** * 退款 */ private Double refundAmount; /** * 预约电量 */ private Integer subscribeChargingCapacity; /** * 实充电量 */ private Double actualChargingCapacity; /** * 订单支付时间戳 */ private Long payTimestamp; /** * 订单退款时间戳 */ private Long refundTimestamp; /** * 开始充电时间戳 */ private Long startChargingTimestamp; /** * 结束充电时间戳 */ private Long stopChargingTimestamp; /** * 订单状态:// 已支付(1),退款中(2),已退款(3),订单完成(4),退款失败5) */ private Integer orderStatus; /** * 充电桩名称 */ private String c3Name; /** * 灯杆名称 */ // private String poleName; /** * 0 充电中 1充电结束 */ private Integer changingStates; }