zhengyuxuan
2025-04-02 d0ca4c5479641ac5616d1e6fd2c258aea7d93222
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
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
using Tea;
 
namespace LifePayment.Domain
{
    public class DataBillErceiptApplyInput
    {
        /// <summary>
        /// 申请的类型。可传入:
        /// * ACCOUNT_LOG_DETAIL - 余额收支证明
        /// * ACCOUNT_FLOW_DETAIL - 余额收支流水证明
        /// * FUND_DETAIL - 转入转出收支证明
        /// * ACCOUNT_LOG_SUM_DAILY - 收支汇总证明(日汇总)
        /// * ACCOUNT_LOG_SUM_MONTHLY - 收支汇总证明(月汇总)
        /// </summary>
        [JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string Type
        {
            get;
            set;
        }
 
        /// <summary>
        /// 根据不同业务类型,传入不同参数。格式如下:
        /// * ACCOUNT_LOG_DETAIL - 传入账务流水号,示例:117007*********9151
        /// * ACCOUNT_FLOW_DETAIL - 传入流水日期区间示例:20220301-20220331
        /// * FUND_DETAIL - 传入资金单据号,示例:2022051511007***************0731
        /// * ACCOUNT_LOG_SUM_DAILY - 传入日期,示例:2022-01-01
        /// * ACCOUNT_LOG_SUM_MONTHLY - 传入月份,示例:2022-01
        /// </summary>
        [JsonProperty("key", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string Key
        {
            get;
            set;
        }
 
        /// <summary>
        /// ISV与商户签约授权协议号。
        /// </summary>
        [JsonProperty("agreement_no", NullValueHandling = NullValueHandling.Ignore)]
        public string AgreementNo
        {
            get;
            set;
        }
    }
 
    public class DataBillErceiptApplyResponse : AlipayBaseOutput
    {
        /// <summary>
        /// 文件申请号file_id信息。使用file_id可以查询处理状态
        /// </summary>
        [NameInMap("file_id")]
        public string FileId
        {
            get;
            set;
        }
 
    }
}