123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Aop.Api.Domain
- {
-
-
-
- [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<QueryInstBillDetail> 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; }
-
-
-
- [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; }
-
-
-
- [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; }
- }
- }
|