OnlinePaymentDetailVO.java 7.71 KB
package com.diligrp.cashier.boss.domain;

public class OnlinePaymentDetailVO {
    /** 主键ID */
    private Long id;
    /** 商户ID */
    private Long mchId;
    /** 商户名称 */
    private String mchName;
    /** 交易ID */
    private String tradeId;
    /** 支付ID */
    private String paymentId;
    /** 外部流水号 */
    private String serialNo;
    /** 付款人 */
    private String payerId;
    /** 客户账号ID */
    private Long customerAccountId;
    /** 客户ID */
    private Long customerId;
    /** 客户编码 */
    private String customerCode;
    /** 客户名称 */
    private String customerName;
    /** 支付通道 */
    private Integer channelId;
    /** 支付通道名称 */
    private String channelName;
    /** 实际支付方式 */
    private Integer outPayType;
    /** 实际支付方式名称 */
    private String outPayTypeName;
    /** 交易类型 */
    private Integer tradeType;
    /** 交易类型名称 */
    private String tradeTypeName;
    /** 商品描述 */
    private String goods;
    /** 申请金额-分 */
    private Long amount;
    /** 申请金额-文本 */
    private String amountText;
    /** 费用金额-分 */
    private Long fee;
    /** 费用金额-文本 */
    private String feeText;
    /** 笔数 */
    private Long countTotal;
    /** 支付时间 */
    private String payTime;
    /** 创建时间 */
    private String createdTime;
    /** 修改时间 */
    private String modifiedTime;
    /** 申请状态 */
    private Integer state;
    /** 申请状态名称 */
    private String stateName;
    /** 订单来源 */
    private Integer source;
    /** 订单来源名称 */
    private String sourceName;
    /** 交易备注 */
    private String description;
    /** 申请金额-分 */
    private Long totalRowAmount;
    /** 申请金额-文本 */
    private String totalRowAmountText;
    /** 费用金额-分 */
    private Long totalRowFee;
    /** 费用金额-文本 */
    private String totalRowFeeText;

    private Object totalRow;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getMchId() {
        return mchId;
    }

    public void setMchId(Long mchId) {
        this.mchId = mchId;
    }

    public String getMchName() {
        return mchName;
    }

    public void setMchName(String mchName) {
        this.mchName = mchName;
    }

    public String getTradeId() {
        return tradeId;
    }

    public void setTradeId(String tradeId) {
        this.tradeId = tradeId;
    }

    public String getPaymentId() {
        return paymentId;
    }

    public void setPaymentId(String paymentId) {
        this.paymentId = paymentId;
    }

    public String getSerialNo() {
        return serialNo;
    }

    public void setSerialNo(String serialNo) {
        this.serialNo = serialNo;
    }

    public String getPayerId() {
        return payerId;
    }

    public void setPayerId(String payerId) {
        this.payerId = payerId;
    }

    public Long getCustomerAccountId() {
        return customerAccountId;
    }

    public void setCustomerAccountId(Long customerAccountId) {
        this.customerAccountId = customerAccountId;
    }

    public Long getCustomerId() {
        return customerId;
    }

    public void setCustomerId(Long customerId) {
        this.customerId = customerId;
    }

    public String getCustomerCode() {
        return customerCode;
    }

    public void setCustomerCode(String customerCode) {
        this.customerCode = customerCode;
    }

    public String getCustomerName() {
        return customerName;
    }

    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }

    public Integer getChannelId() {
        return channelId;
    }

    public void setChannelId(Integer channelId) {
        this.channelId = channelId;
    }

    public String getChannelName() {
        return channelName;
    }

    public void setChannelName(String channelName) {
        this.channelName = channelName;
    }

    public Integer getOutPayType() {
        return outPayType;
    }

    public void setOutPayType(Integer outPayType) {
        this.outPayType = outPayType;
    }

    public String getOutPayTypeName() {
        return outPayTypeName;
    }

    public void setOutPayTypeName(String outPayTypeName) {
        this.outPayTypeName = outPayTypeName;
    }

    public Integer getTradeType() {
        return tradeType;
    }

    public void setTradeType(Integer tradeType) {
        this.tradeType = tradeType;
    }

    public String getTradeTypeName() {
        return tradeTypeName;
    }

    public void setTradeTypeName(String tradeTypeName) {
        this.tradeTypeName = tradeTypeName;
    }

    public String getGoods() {
        return goods;
    }

    public void setGoods(String goods) {
        this.goods = goods;
    }

    public Long getAmount() {
        return amount;
    }

    public void setAmount(Long amount) {
        this.amount = amount;
    }

    public String getAmountText() {
        return amountText;
    }

    public void setAmountText(String amountText) {
        this.amountText = amountText;
    }

    public Long getFee() {
        return fee;
    }

    public void setFee(Long fee) {
        this.fee = fee;
    }

    public String getFeeText() {
        return feeText;
    }

    public void setFeeText(String feeText) {
        this.feeText = feeText;
    }

    public Long getCountTotal() {
        return countTotal;
    }

    public void setCountTotal(Long countTotal) {
        this.countTotal = countTotal;
    }

    public String getPayTime() {
        return payTime;
    }

    public void setPayTime(String payTime) {
        this.payTime = payTime;
    }

    public String getCreatedTime() {
        return createdTime;
    }

    public void setCreatedTime(String createdTime) {
        this.createdTime = createdTime;
    }

    public String getModifiedTime() {
        return modifiedTime;
    }

    public void setModifiedTime(String modifiedTime) {
        this.modifiedTime = modifiedTime;
    }

    public Integer getState() {
        return state;
    }

    public void setState(Integer state) {
        this.state = state;
    }

    public String getStateName() {
        return stateName;
    }

    public void setStateName(String stateName) {
        this.stateName = stateName;
    }

    public Integer getSource() {
        return source;
    }

    public void setSource(Integer source) {
        this.source = source;
    }

    public String getSourceName() {
        return sourceName;
    }

    public void setSourceName(String sourceName) {
        this.sourceName = sourceName;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Long getTotalRowAmount() {
        return totalRowAmount;
    }

    public void setTotalRowAmount(Long totalRowAmount) {
        this.totalRowAmount = totalRowAmount;
    }

    public String getTotalRowAmountText() {
        return totalRowAmountText;
    }

    public void setTotalRowAmountText(String totalRowAmountText) {
        this.totalRowAmountText = totalRowAmountText;
    }

    public Long getTotalRowFee() {
        return totalRowFee;
    }

    public void setTotalRowFee(Long totalRowFee) {
        this.totalRowFee = totalRowFee;
    }

    public String getTotalRowFeeText() {
        return totalRowFeeText;
    }

    public void setTotalRowFeeText(String totalRowFeeText) {
        this.totalRowFeeText = totalRowFeeText;
    }

    public Object getTotalRow() {
        return totalRow;
    }

    public void setTotalRow(Object totalRow) {
        this.totalRow = totalRow;
    }
}