mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
组装after参数
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 结算订单后DTO
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class AfterSettleOrderDTO {
|
||||
/**
|
||||
* 订单编号
|
||||
*/
|
||||
private String orderCode;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 订单支付金额
|
||||
*/
|
||||
private BigDecimal orderPayAmount;
|
||||
|
||||
/**
|
||||
* 订单消费金额
|
||||
*/
|
||||
private BigDecimal orderConsumeAmount;
|
||||
|
||||
/**
|
||||
* 订单结算金额
|
||||
*/
|
||||
private BigDecimal orderSettleAmount;
|
||||
|
||||
/**
|
||||
* 订单总电费金额
|
||||
*/
|
||||
private BigDecimal orderElectricityAmount;
|
||||
|
||||
/**
|
||||
* 订单电费折扣金额
|
||||
*/
|
||||
private BigDecimal orderElectricityDiscountAmount;
|
||||
|
||||
/**
|
||||
* 订单总服务费金额
|
||||
*/
|
||||
private BigDecimal orderServiceAmount;
|
||||
|
||||
/**
|
||||
* 订单服务费折扣金额
|
||||
*/
|
||||
private BigDecimal orderServiceDiscountAmount;
|
||||
|
||||
/**
|
||||
* 订单退款金额
|
||||
*/
|
||||
private BigDecimal orderRefundAmount;
|
||||
}
|
||||
Reference in New Issue
Block a user