using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ArInvoiceBillLinkOpenApiResponse Data Structure. /// [Serializable] public class ArInvoiceBillLinkOpenApiResponse : AopObject { /// /// 开票金额 /// [XmlElement("amt")] public MultiCurrencyMoneyOpenApi Amt { get; set; } /// /// 应收月账单号 /// [XmlElement("bill_no")] public string BillNo { get; set; } /// /// 创建人 /// [XmlElement("creator")] public string Creator { get; set; } /// /// 创建 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 可开票时间 yyyymm /// [XmlElement("inv_rcpt_month")] public string InvRcptMonth { get; set; } /// /// 发票ID /// [XmlElement("invoice_id")] public string InvoiceId { get; set; } /// /// 发票单据ID /// [XmlElement("invoice_receipt_id")] public string InvoiceReceiptId { get; set; } /// /// 修改人 /// [XmlElement("last_moder")] public string LastModer { get; set; } /// /// 关联明细号 /// [XmlElement("link_id")] public string LinkId { get; set; } /// /// 01主站,02芝麻,03金融云 /// [XmlElement("out_biz_type")] public string OutBizType { get; set; } /// /// 已撤回金额 /// [XmlElement("ret_amt")] public MultiCurrencyMoneyOpenApi RetAmt { get; set; } /// /// 关联明细状态 Y:有效,N:无效 /// [XmlElement("status")] public string Status { get; set; } /// /// 租户机构id /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } } }