2023-03-04 16:29:55 +08:00
|
|
|
|
package com.jsowell.pile.dto;
|
|
|
|
|
|
|
2023-03-30 15:35:14 +08:00
|
|
|
|
import com.jsowell.pile.domain.PileAuthCard;
|
2023-06-07 15:14:03 +08:00
|
|
|
|
import com.jsowell.pile.vo.CarVinInfoVO;
|
2023-03-04 16:29:55 +08:00
|
|
|
|
import com.jsowell.pile.vo.uniapp.PileConnectorDetailVO;
|
|
|
|
|
|
import com.jsowell.pile.vo.web.BillingTemplateVO;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 生成订单dto
|
|
|
|
|
|
* start_pile_charge
|
|
|
|
|
|
*/
|
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
|
@Data
|
|
|
|
|
|
public class GenerateOrderDTO extends BasicPileDTO{
|
2023-04-03 10:47:45 +08:00
|
|
|
|
private static final long serialVersionUID = -1374766807594759104L;
|
2023-03-04 16:29:55 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 会员id
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String memberId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* token
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String memberToken;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 启动方式(0-后管启动;1-用户app启动)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String startMode;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 支付方式 1-余额支付;3-白名单支付;4-微信支付;5-支付宝支付
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String payMode;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 充电金额
|
|
|
|
|
|
*/
|
|
|
|
|
|
private BigDecimal chargeAmount;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 充电桩枪口信息
|
|
|
|
|
|
*/
|
|
|
|
|
|
private PileConnectorDetailVO pileConnector;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 计费模板相关信息
|
|
|
|
|
|
*/
|
|
|
|
|
|
private BillingTemplateVO billingTemplate;
|
2023-03-27 11:49:32 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 启动类型
|
|
|
|
|
|
* @see com.jsowell.common.enums.ykc.StartTypeEnum
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String startType;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 预约时间
|
|
|
|
|
|
*/
|
2023-03-29 08:21:12 +08:00
|
|
|
|
private String appointmentTime;
|
2023-03-30 15:35:14 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 使用刷卡创建订单时有值
|
|
|
|
|
|
*/
|
|
|
|
|
|
private PileAuthCard pileAuthCardInfo;
|
2023-06-07 15:14:03 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* vin启动有值
|
|
|
|
|
|
*/
|
|
|
|
|
|
private CarVinInfoVO carVinInfoVO;
|
2023-03-04 16:29:55 +08:00
|
|
|
|
}
|