1
zj
2026-03-02 00bdd5dce142811b3766ee6af801c72fba18df09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.nq.pojo;
 
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 支付回调通知接收类
 */
@Data
public class PaymentNotifyResponse implements Serializable {
    private NotifyData data;
    private String signature;
    private String signature_n;
}