using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMerchantWeikeBilltaxModifyModel Data Structure. /// [Serializable] public class AlipayMerchantWeikeBilltaxModifyModel : AopObject { /// /// 实际报税金额,单位元 /// [XmlElement("actual_tax")] public string ActualTax { get; set; } /// /// 退税支付宝转账流水号 /// [XmlElement("alipay_trans_serial_no")] public string AlipayTransSerialNo { get; set; } /// /// 申报个税账单的月份,比如在2019年4月申报3月的个税,则创:"201903" /// [XmlElement("bill_month")] public string BillMonth { get; set; } /// /// 账单编号 /// [XmlElement("bill_no")] public string BillNo { get; set; } /// /// 账单版本号 /// [XmlElement("bill_version")] public long BillVersion { get; set; } /// /// 预扣税金额 /// [XmlElement("expect_tax")] public string ExpectTax { get; set; } /// /// 账单更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 外部业务号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 当月已退个税金额 /// [XmlElement("tax_rebate")] public string TaxRebate { get; set; } /// /// 退税支付时间 /// [XmlElement("tax_rebate_gmt_pay")] public string TaxRebateGmtPay { get; set; } /// /// 退税转账流水号 /// [XmlElement("tax_rebate_serial_no")] public string TaxRebateSerialNo { get; set; } /// /// 微客用户编码 /// [XmlElement("weike_user_id")] public long WeikeUserId { get; set; } } }