package com.stylefeng.guns.modular.system.util.Tingg.model;
|
|
import java.util.Date;
|
|
public class Payments {
|
/**
|
* 付款人的客户姓名
|
*/
|
private String customer_name;
|
/**
|
* 客户付费购买的商家推荐
|
*/
|
private String account_number;
|
/**
|
* 独特的纤维素特性
|
*/
|
private String cpg_transaction_id;
|
/**
|
* 所支付的ISO货币代码
|
*/
|
private String currency_code;
|
/**
|
* 支付方式客户支付,如Airtel
|
*/
|
private String payer_client_code;
|
/**
|
* 付款选项客户名称
|
*/
|
private String payer_client_name;
|
/**
|
* 客户支付的金额
|
*/
|
private Double amount_paid;
|
/**
|
* 服务代码支付给
|
*/
|
private String service_code;
|
/**
|
* 付款和收款的时间
|
*/
|
private Date date_payment_received;
|
/**
|
* 用户付费的手机号码
|
*/
|
private String msisdn;
|
/**
|
* 为交易生成的MNO或银行的唯一id
|
*/
|
private String payer_transaction_id;
|
/**
|
* 付款的整体状态如下表所示
|
* 141 商户系统拒绝付款
|
* 139 商户待付款确认
|
* 140 商户接受的付款
|
* 138 付款请求已启动但失败
|
* 144 向商家交付但尚未确认成功的付款
|
* 219 付款已上报
|
*/
|
private String hub_overall_status;
|
/**
|
* 由MNO、银行或信用卡收款人提供的付款说明。
|
*/
|
private String payer_narration;
|
|
public String getCustomer_name() {
|
return customer_name;
|
}
|
|
public void setCustomer_name(String customer_name) {
|
this.customer_name = customer_name;
|
}
|
|
public String getAccount_number() {
|
return account_number;
|
}
|
|
public void setAccount_number(String account_number) {
|
this.account_number = account_number;
|
}
|
|
public String getCpg_transaction_id() {
|
return cpg_transaction_id;
|
}
|
|
public void setCpg_transaction_id(String cpg_transaction_id) {
|
this.cpg_transaction_id = cpg_transaction_id;
|
}
|
|
public String getCurrency_code() {
|
return currency_code;
|
}
|
|
public void setCurrency_code(String currency_code) {
|
this.currency_code = currency_code;
|
}
|
|
public String getPayer_client_code() {
|
return payer_client_code;
|
}
|
|
public void setPayer_client_code(String payer_client_code) {
|
this.payer_client_code = payer_client_code;
|
}
|
|
public String getPayer_client_name() {
|
return payer_client_name;
|
}
|
|
public void setPayer_client_name(String payer_client_name) {
|
this.payer_client_name = payer_client_name;
|
}
|
|
public Double getAmount_paid() {
|
return amount_paid;
|
}
|
|
public void setAmount_paid(Double amount_paid) {
|
this.amount_paid = amount_paid;
|
}
|
|
public String getService_code() {
|
return service_code;
|
}
|
|
public void setService_code(String service_code) {
|
this.service_code = service_code;
|
}
|
|
public Date getDate_payment_received() {
|
return date_payment_received;
|
}
|
|
public void setDate_payment_received(Date date_payment_received) {
|
this.date_payment_received = date_payment_received;
|
}
|
|
public String getMsisdn() {
|
return msisdn;
|
}
|
|
public void setMsisdn(String msisdn) {
|
this.msisdn = msisdn;
|
}
|
|
public String getPayer_transaction_id() {
|
return payer_transaction_id;
|
}
|
|
public void setPayer_transaction_id(String payer_transaction_id) {
|
this.payer_transaction_id = payer_transaction_id;
|
}
|
|
public String getHub_overall_status() {
|
return hub_overall_status;
|
}
|
|
public void setHub_overall_status(String hub_overall_status) {
|
this.hub_overall_status = hub_overall_status;
|
}
|
|
public String getPayer_narration() {
|
return payer_narration;
|
}
|
|
public void setPayer_narration(String payer_narration) {
|
this.payer_narration = payer_narration;
|
}
|
}
|