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

matrix.business.pay.entity.MatrixBusinessPayEntity 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
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
public class MatrixBusinessPayEntity extends MatrixBusinessPayBaseEntity {

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

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

    /**
     * 金额
     */
    private BigDecimal price;

    /**
     * 内容
     */
    private String body;

    /**
     * 跳转等url地址
     */
    private String url;

    /**
     * 实际支付金额
     */
    private BigDecimal actualPrice;

    /**
     * 第三方订单号
     */
    private String outTradeNo;

    /**
     * 支付方式
     */
    private String payMode;

    /**
     * 支付渠道
     */
    private String payChannel;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy