New file |
| | |
| | | package com.ruoyi.order.api.model; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.Null; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/1/22 18:20 |
| | | */ |
| | | @Data |
| | | public class AddTripartitePlatformOrder { |
| | | /** |
| | | * 三方充电订单号 |
| | | */ |
| | | private String startChargeSeq; |
| | | /** |
| | | * 充电枪id |
| | | */ |
| | | private Integer chargingGunId; |
| | | /** |
| | | * 运营商id |
| | | */ |
| | | private String operatorId; |
| | | /** |
| | | * 支付方式(0=未知,1=微信,2=支付宝) |
| | | */ |
| | | private Integer rechargePaymentType; |
| | | /** |
| | | * 充电余额 |
| | | */ |
| | | private BigDecimal paymentAmount; |
| | | /** |
| | | * 充电车牌号 |
| | | */ |
| | | @Null |
| | | private String PlateNum; |
| | | } |