mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
59 lines
782 B
Java
59 lines
782 B
Java
|
|
package com.jsowell.pile.dto;
|
||
|
|
|
||
|
|
import com.jsowell.common.core.domain.BaseEntity;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
@Builder
|
||
|
|
public class QueryOrderDTO extends BaseEntity {
|
||
|
|
/**
|
||
|
|
* 充电桩编号
|
||
|
|
*/
|
||
|
|
private String pileSn;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 枪口号
|
||
|
|
*/
|
||
|
|
private String connectorCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 会员id
|
||
|
|
*/
|
||
|
|
private String memberId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 订单状态
|
||
|
|
*/
|
||
|
|
private String orderStatus;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 订单编号
|
||
|
|
*/
|
||
|
|
private String orderCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 手机号
|
||
|
|
*/
|
||
|
|
private String mobileNumber;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 站点Id
|
||
|
|
*/
|
||
|
|
private String stationId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 开始时间
|
||
|
|
*/
|
||
|
|
private String startTime;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 结束时间
|
||
|
|
*/
|
||
|
|
private String endTime;
|
||
|
|
}
|