liurunyu
2025-04-27 dc3a3b4993c8a205a7932328d149bd7cfc94cf06
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;
}