add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
package com.dobbinsoft.fw.pay.model.request;
 
import com.github.binarywang.wxpay.constant.WxPayConstants.AccountType;
import com.github.binarywang.wxpay.exception.WxPayException;
import lombok.*;
import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
 
import java.util.Arrays;
 
/**
 * <pre>
 *   微信支付下载资金账单请求参数类
 * Created by cwivan on 2018-08-02.
 * </pre>
 *
 * @author <a href="https://github.com/cwivan">cwivan</a>
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Builder(builderMethodName = "newBuilder")
@NoArgsConstructor
@AllArgsConstructor
public class MatrixPayDownloadFundFlowRequest extends MatrixBasePayRequest {
    private static final String[] ACCOUNT_TYPES = new String[]{AccountType.BASIC, AccountType.OPERATION, AccountType.FEES};
    private static final String SIGN_TYPE_HMAC_SHA256 = "HMAC-SHA256";
    private static final String TAR_TYPE_GZIP = "GZIP";
    private static final long serialVersionUID = -397384489175016281L;
 
    /**
     * <pre>
     * 对账单日期
     * bill_date
     * 是
     * String(8)
     * 20140603
     * 下载对账单的日期,格式:20140603
     * </pre>
     */
    private String billDate;
 
    /**
     * <pre>
     * 资金账户类型
     * account_type
     * 是
     * Basic
     * String(8)
     * --Basic,基本账户
     * --Operation,运营账户
     * --Fees,手续费账户
     * </pre>
     */
    private String accountType;
 
    /**
     * <pre>
     * 压缩账单
     * tar_type
     * 否
     * String(8)
     * GZIP
     * 非必传参数,固定值:GZIP,返回格式为.gzip的压缩包账单。不传则默认为数据流形式。
     * </pre>
     */
    private String tarType;
 
}