sunpengfei
2025-11-28 312ebed2d86858e4fb57ec09679244e9b806b57f
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
89
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>
    /// 账户止付和解止付_银企直联 对公账户层的止付、解除止付
    /// </summary>
    public class StopPaymentAndSettlementAccountsRequest : PingAnPayBaseRequest
    {
        /// <summary>
        /// 客户流水号 唯一标志该笔交易的流水号,不可重复,长度必须大于10位
        /// </summary>
        [MaxLength(30)]
        [Required]
        [JsonProperty("seqNo")]
        public string SeqNo { get; set; }
 
        /// <summary>
        /// 止付账户
        /// </summary>
        [MaxLength(30)]
        [Required]
        [JsonProperty("accountNo")]
        public string AccountNo { get; set; }
 
        /// <summary>
        /// 操作类型 A-止付 D-解除止付
        /// </summary>
        [MaxLength(1)]
        [Required]
        [JsonProperty("opType")]
        public string OpType { get; set; }
 
        /// <summary>
        /// 止付编号 解除止付必须上送
        /// </summary>
        [MaxLength(30)]
        [JsonProperty("stopPayFlw")]
        public string StopPayFlw { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [MaxLength(100)]
        [JsonProperty("remark")]
        public string Remark { get; set; }
 
        /// <summary>
        /// 币种
        /// </summary>
        [MaxLength(3)]
        [JsonProperty("ccyCode")]
        public string CcyCode { get; set; }
    }
 
    public class StopPaymentAndSettlementAccountsResponse : PingAnPayBaseResponse
    {
        /// <summary>
        /// 客户流水号
        /// </summary>
        public string SeqNo { get; set; }
 
        /// <summary>
        /// 银行业务流水
        /// </summary>
        public string BizSeqNo { get; set; }
 
        /// <summary>
        /// 冻结止付编号
        /// </summary>
        public string StopPayFlw { get; set; }
 
        /// <summary>
        /// 状态码
        /// </summary>
        public string Stt { get; set; }
 
        /// <summary>
        /// 状态描述
        /// </summary>
        public string SttDesc { get; set; }
    }
}