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

matrix.business.pay.entity.MatrixBusinessRefundEntity Maven / Gradle / Ivy

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

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

import java.math.BigDecimal;

/**
 * 退款实体
 * @author wangcheng
 */
@EqualsAndHashCode(callSuper = true)
@Data
@Accessors(chain = true)
public class MatrixBusinessRefundEntity extends MatrixBusinessPayBaseEntity {

    /**
     * 退款ID
     */
    private String refundId;

    /**
     * 支付ID
     */
    private String payId;

    /**
     * 订单号
     */
    private String orderId;

    /**
     * 退款金额
     */
    private BigDecimal refundPrice;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy