mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
新增接口, 设置订单待补缴金额
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 订单补缴金额DTO
|
||||
*/
|
||||
@Data
|
||||
public class OrderSupplementAmountDTO {
|
||||
// 订单编号
|
||||
private String orderCode;
|
||||
|
||||
// 补缴金额
|
||||
private BigDecimal supplementAmount;
|
||||
|
||||
// 备注
|
||||
private String remark;
|
||||
}
|
||||
Reference in New Issue
Block a user