sunpengfei
2025-11-19 7b47c91bcf89d667a5c99cfafe0d899280f7fbe3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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
{
    /// <summary>
    /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。
    /// </summary>
    public class InquiryAccountStopPaymentDetailsRequest : PingAnPayBaseRequest
    {
        /// <summary>
        /// 账户
        /// </summary>
        [MaxLength(10)]
        [Required]
        [JsonProperty("accountNo")]
        public string AccountNo { get; set; }
 
        /// <summary>
        /// 页码 从1开始递增,默认1
        /// </summary>
        [MaxLength(3)]
        [JsonProperty("pageNo")]
        public string PageNo { get; set; }
    }
 
    /// <summary>
    /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。
    /// </summary>
    public class InquiryAccountStopPaymentDetailsResponse : PingAnPayBaseResponse
    {
        /// <summary>
        /// 当前页记录数量
        /// </summary>
        public string CSize { get; set; }
 
        /// <summary>
        /// 翻页结束标志  N-未结束,有下一页,页面递增;Y-已结束
        /// </summary>
        public string EndFlag { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<InquiryAccountStopPaymentDetailsResponseItem> List { get; set; }
    }
 
    /// <summary>
    /// 账户止付详情查询_银企直联 对公账户层的冻结/止付详情查询,每页最大100条。
    /// </summary>
    public class InquiryAccountStopPaymentDetailsResponseItem
    {
        /// <summary>
        /// 止付编号
        /// </summary>
        public string StopPayFlw { get; set; }
 
        /// <summary>
        /// 冻结起始日期
        /// </summary>
        public string StartDate { get; set; }
 
        /// <summary>
        /// 冻结结束日期
        /// </summary>
        public string EndDate { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string Remark { get; set; }
 
        /// <summary>
        /// 止付代码 02-临时止付
        /// </summary>
        public string StopCode { get; set; }
 
        /// <summary>
        /// 止付状态 0-有效 1-无效
        /// </summary>
        public string FreezeStatu { get; set; }
    }
}