All Downloads are FREE. Search and download functionalities are using the official Maven repository.

matrix.business.pay.dto.RefundResultDto Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package matrix.business.pay.dto;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;

/**
 * 退款结果
 * @author wangcheng
 * 2022/7/6
 **/
@Data
@Accessors(chain = true)
public class RefundResultDto implements Serializable {

    /**
     * 成功的退款流水信息
     */
    private Set successRefundIds = new HashSet<>();

    /**
     * 失败的退款流水信息
     */
    private Set failRefundIds = new HashSet<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy