新增 批量退款临时接口

This commit is contained in:
Lemon
2023-08-10 15:19:45 +08:00
parent 043f525da4
commit cd8d934d8f
7 changed files with 181 additions and 65 deletions

View File

@@ -6,6 +6,7 @@ import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
import java.util.List;
/**
* 申请退款dto
@@ -35,4 +36,9 @@ public class ApplyRefundDTO {
* 退款金额
*/
private BigDecimal refundAmount;
/**
* memberId 数组(批量退款)
*/
private List<String> memberIdList;
}