using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { /// /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。 /// public class InquiryAccountStopPaymentDetailsRequest : PingAnPayBaseRequest { /// /// 账户 /// [MaxLength(10)] [Required] [JsonProperty("accountNo")] public string AccountNo { get; set; } /// /// 页码 从1开始递增,默认1 /// [MaxLength(3)] [JsonProperty("pageNo")] public string PageNo { get; set; } } /// /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。 /// public class InquiryAccountStopPaymentDetailsResponse : PingAnPayBaseResponse { /// /// 当前页记录数量 /// public string CSize { get; set; } /// /// 翻页结束标志 N-未结束,有下一页,页面递增;Y-已结束 /// public string EndFlag { get; set; } /// /// /// public List List { get; set; } } /// /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。 /// public class InquiryAccountStopPaymentDetailsResponseItem { /// /// 止付编号 /// public string StopPayFlw { get; set; } /// /// 冻结起始日期 /// public string StartDate { get; set; } /// /// 冻结结束日期 /// public string EndDate { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 止付代码 02-临时止付 /// public string StopCode { get; set; } /// /// 止付状态 0-有效 1-无效 /// public string FreezeStatu { get; set; } } }