using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppFacepayBillPayModel Data Structure.
///
[Serializable]
public class AlipayEbppFacepayBillPayModel : AopObject
{
///
/// 账期
///
[XmlElement("bill_date")]
public string BillDate { get; set; }
///
/// 户号(缴税业务:纳税人识别号,对于三证合一的企业来说,采用社会信用代码;对于个人来说,采用身份证号)
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型英文名称,JF-缴费、TAX-缴税
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 出账机构代码(缴税业务:指征收机关英文代码,例如南京玄武国税(NJXWGS))
///
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
///
/// 扩展字段(缴税业务:taxpayerName -纳税人名称,taxOrgCode - 征收机关代码;缴费业务如需支付宝销账:billCacheKey -欠费单缓存Key,billUniqId - 欠费单唯一ID)
///
[XmlElement("extend_field")]
public string ExtendField { get; set; }
///
/// 滞纳金额,单位:元
///
[XmlElement("fine_amount")]
public string FineAmount { get; set; }
///
/// 机构账单ID(缴税业务:用外部申报号)
///
[XmlElement("inst_no")]
public string InstNo { get; set; }
///
/// ISV流水号,用于控制幂等,须确保全局唯一(缴税业务:可采用{征收机关代码}-{外部申报号}的形式)
///
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
///
/// 支付金额(包含滞纳金),单位:元
///
[XmlElement("pay_amount")]
public string PayAmount { get; set; }
///
/// 商户partnerId
///
[XmlElement("pid")]
public string Pid { get; set; }
///
/// 子业务类型英文名称,ELECTRIC-电费,WATER-水费,GAS-燃气费,TAX-缴税
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
///
/// 用户支付宝付款码
///
[XmlElement("user_identity_code")]
public string UserIdentityCode { get; set; }
}
}