using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// QueryInstBillInfo Data Structure.
///
[Serializable]
public class QueryInstBillInfo : AopObject
{
///
/// 账单金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 余额
///
[XmlElement("balance")]
public string Balance { get; set; }
///
/// 账单日期
///
[XmlElement("bill_date")]
public string BillDate { get; set; }
///
/// 明细说明
///
[XmlArray("bill_detail")]
[XmlArrayItem("query_inst_bill_detail")]
public List BillDetail { get; set; }
///
/// 滞纳金
///
[XmlElement("bill_fines")]
public string BillFines { get; set; }
///
/// 账单流水
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 户名
///
[XmlElement("bill_user_name")]
public string BillUserName { get; set; }
///
/// JDBXINHUI
///
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
///
/// 查询欠费单的惟一标识
///
[XmlElement("charge_uniq_id")]
public string ChargeUniqId { get; set; }
///
/// 销账机构
///
[XmlElement("chargeoff_inst")]
public string ChargeoffInst { get; set; }
///
/// 销账机构给出账机构分配的ID
///
[XmlElement("company_id")]
public string CompanyId { get; set; }
///
/// 扩展属性
///
[XmlElement("extend")]
public string Extend { get; set; }
///
/// 业务类型
///
[XmlElement("order_type")]
public string OrderType { get; set; }
///
/// 外部流水号
///
[XmlElement("out_id")]
public string OutId { get; set; }
///
/// 错误信息
///
[XmlElement("return_message")]
public string ReturnMessage { get; set; }
///
/// 子业务类型
///
[XmlElement("sub_order_type")]
public string SubOrderType { get; set; }
}
}