mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
116 lines
1.7 KiB
Java
116 lines
1.7 KiB
Java
package com.jsowell.pile.domain;
|
||
|
||
import lombok.*;
|
||
|
||
import java.math.BigDecimal;
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* 占桩订单表
|
||
*/
|
||
@Getter
|
||
@Setter
|
||
@Builder
|
||
@AllArgsConstructor
|
||
@NoArgsConstructor
|
||
public class OrderPileOccupy {
|
||
/**
|
||
* 主键
|
||
*/
|
||
private Integer id;
|
||
|
||
/**
|
||
* 占桩订单编号
|
||
*/
|
||
private String occupyCode;
|
||
|
||
/**
|
||
* 状态(0-占桩中;1-订单完成; 2-订单挂起)
|
||
*/
|
||
private String status;
|
||
|
||
/**
|
||
* 会员id
|
||
*/
|
||
private String memberId;
|
||
|
||
/**
|
||
* 充电站id
|
||
*/
|
||
private String stationId;
|
||
|
||
/**
|
||
* 车牌号码
|
||
*/
|
||
private String plateNumber;
|
||
|
||
/**
|
||
* 订单号
|
||
*/
|
||
private String orderCode;
|
||
|
||
/**
|
||
* 交易流水号
|
||
*/
|
||
private String transactionCode;
|
||
|
||
/**
|
||
* 占桩开始时间
|
||
*/
|
||
private Date startTime;
|
||
|
||
/**
|
||
* 占桩结束时间
|
||
*/
|
||
private Date endTime;
|
||
|
||
/**
|
||
* 支付状态(0-未支付;1-支付完成;2-无需支付; 3-待补缴)
|
||
*/
|
||
private String payStatus;
|
||
|
||
/**
|
||
* 占桩订单金额
|
||
*/
|
||
private BigDecimal orderAmount;
|
||
|
||
/**
|
||
* 充电桩编号
|
||
*/
|
||
private String pileSn;
|
||
|
||
/**
|
||
* 充电桩枪口号
|
||
*/
|
||
private String connectorCode;
|
||
|
||
/**
|
||
* 充电桩枪口编号
|
||
*/
|
||
private String pileConnectorCode;
|
||
|
||
/**
|
||
* 创建时间
|
||
*/
|
||
private Date createTime;
|
||
|
||
/**
|
||
* 创建人
|
||
*/
|
||
private String createBy;
|
||
|
||
/**
|
||
* 修改时间
|
||
*/
|
||
private Date updateTime;
|
||
|
||
/**
|
||
* 修改人
|
||
*/
|
||
private String updateBy;
|
||
|
||
/**
|
||
* 删除标识(0-否;1-是)
|
||
*/
|
||
private String delFlag;
|
||
} |