using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ArInvoiceReceiptOpenApiResponse Data Structure. /// [Serializable] public class ArInvoiceReceiptOpenApiResponse : AopObject { /// /// 合约号 /// [XmlElement("arrangement_no")] public string ArrangementNo { get; set; } /// /// 可开票单据主键ID /// [XmlElement("id")] public string Id { get; set; } /// /// 机构ID /// [XmlElement("inst_id")] public string InstId { get; set; } /// /// 开票时间 格式:yyyymm /// [XmlElement("inv_dt")] public string InvDt { get; set; } /// /// 开票模式 01:实收开票, 02:应收开票, 03:累计实收开票 /// [XmlElement("inv_mode")] public string InvMode { get; set; } /// /// 可开票金额 /// [XmlElement("invoice_amt")] public MultiCurrencyMoneyOpenApi InvoiceAmt { get; set; } /// /// 已开票金额 /// [XmlElement("invoiced_amt")] public MultiCurrencyMoneyOpenApi InvoicedAmt { get; set; } /// /// 结算ip_id /// [XmlElement("ip_id")] public string IpId { get; set; } /// /// 结算对象ip_role_id /// [XmlElement("ip_role_id")] public string IpRoleId { get; set; } /// /// 最后修改人 /// [XmlElement("last_moder")] public string LastModer { get; set; } /// /// 已关联发票金额 /// [XmlElement("link_invoice_amt")] public MultiCurrencyMoneyOpenApi LinkInvoiceAmt { get; set; } /// /// 外部单据号,对应开票记录的月账单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 可开票单据来源,01:主站,02:芝麻,03:金融云,04:微贷 /// [XmlElement("out_biz_type")] public string OutBizType { get; set; } /// /// 付款方式,1:资金,5:走量 /// [XmlElement("pay_way")] public string PayWay { get; set; } /// /// 产品码 /// [XmlElement("prod_code")] public string ProdCode { get; set; } /// /// 结算类型 ,01:实时,02:预收,03:后收,04:周期性,05:按日汇总,09:延期结算 /// [XmlElement("settle_type")] public string SettleType { get; set; } /// /// 开票金额消耗状态:01未开票,02部分开票,03:已开票 /// [XmlElement("status")] public string Status { get; set; } /// /// 税率 /// [XmlElement("tax_rate")] public long TaxRate { get; set; } /// /// 税收类型01:增值税,02:营业税 /// [XmlElement("tax_type")] public string TaxType { get; set; } /// /// 租户ID /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } /// /// 类型,1:应收,2:返点 /// [XmlElement("type")] public string Type { get; set; } } }