zhubaomin
2025-04-07 1a2b07f01ba4616fd9e894dddf474b56d020158c
pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/dto/NotifyResource.java
New file
@@ -0,0 +1,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;
}