新增接口, 设置订单待补缴金额

This commit is contained in:
Guoqs
2025-04-01 16:17:04 +08:00
parent 0e7e1d9373
commit 3ff52f85f0
4 changed files with 57 additions and 1 deletions

View File

@@ -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;
}