Administrator
2024-07-16 8bcb47b7ea268061f4629e0953de4e3597fca690
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
package com.dy.pipIrrSell.wechatpay.dto;
 
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-06-13 19:16
 * @LastEditTime 2024-06-13 19:16
 * @Description
 */
 
@Data
public class NotifyResource {
    /**
     * 原始类型
     * 原始回调类型为:transaction
     */
    private String original_type;
 
    /**
     * 加密算法类型
     * 仅支持AEAD_AES_256_GCM
     */
    private String algorithm;
 
    /**
     * 数据密文
     */
    private String ciphertext;
 
    /**
     * 附加数据
     */
    public String associated_data;
 
    /**
     * 随机串
     */
    private String nonce;
}