Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/ApplyRefundDTO.java
2023-11-27 11:59:15 +08:00

55 lines
815 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
import java.util.List;
/**
* 申请退款dto
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class ApplyRefundDTO {
/**
* 会员id
*/
private String memberId;
/**
* 订单编号
*/
private String orderCode;
/**
* 退款类型
* 1-订单结算退款 2-用户余额退款
*/
private String refundType;
/**
* 退款金额
*/
private BigDecimal refundAmount;
/**
* memberId 数组(批量退款)
*/
private List<String> memberIdList;
/**
* 汇付需要merchantKey取小程序appId传给它
*/
private String wechatAppId;
/**
* 钱包编号
*/
private String walletCode;
}