mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
100 lines
1.4 KiB
Java
100 lines
1.4 KiB
Java
package com.jsowell.pile.domain;
|
||
|
||
import lombok.*;
|
||
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* 占桩订单表
|
||
*/
|
||
@Getter
|
||
@Setter
|
||
@Builder
|
||
@AllArgsConstructor
|
||
@NoArgsConstructor
|
||
public class OrderPileOccupy {
|
||
/**
|
||
* 主键
|
||
*/
|
||
private Integer id;
|
||
|
||
/**
|
||
* 占桩订单编号
|
||
*/
|
||
private String occupyCode;
|
||
|
||
/**
|
||
* 状态(0-占桩中;1-订单完成)
|
||
*/
|
||
private String status;
|
||
|
||
/**
|
||
* 会员id
|
||
*/
|
||
private String memberId;
|
||
|
||
/**
|
||
* 订单号
|
||
*/
|
||
private String orderCode;
|
||
|
||
/**
|
||
* 交易流水号
|
||
*/
|
||
private String transactionCode;
|
||
|
||
/**
|
||
* 占桩开始时间
|
||
*/
|
||
private Date startTime;
|
||
|
||
/**
|
||
* 占桩结束时间
|
||
*/
|
||
private Date endTime;
|
||
|
||
/**
|
||
* 支付状态(0-未支付;1-支付完成;2-无需支付)
|
||
*/
|
||
private String payStatus;
|
||
|
||
/**
|
||
* 充电桩编号
|
||
*/
|
||
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;
|
||
} |