using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace ApiTools.Core.Utils.NongYePayUtils.Models { [XmlRoot("ap")] public class NongYePayRealTimeDownloadEreceiptRequest : NongYePayBaseRequest { public NongYePayRealTimeDownloadEreceiptRequest() { CCTransCode = "CMRA76"; } /// /// 交易金额 /// public string Amt { get; set; } public NongYePayRealTimeDownloadEreceiptRequestCmp Cmp { get; set; } } public class NongYePayRealTimeDownloadEreceiptRequestCmp { /// /// 省市代码 /// public string DbProv { get; set; } /// /// 查询账号 /// public string DbAccNo { get; set; } /// /// 货币码 /// public string DbCur { get; set; } /// /// 贷方省市代码 /// public string CrProv { get; set; } /// /// 贷方账号 /// public string CrAccNo { get; set; } /// /// 贷方货币码 /// public string CrCur { get; set; } /// /// 交易日期 /// public string TrDate { get; set; } /// /// 日志号 /// public string JrnNo { get; set; } } [XmlRoot("ap")] public class NongYePayRealTimeDownloadEreceiptResponse : NongYePayZipResponse { } }