1
zj
2025-09-08 9b44c17d57474254ca8f7ef9eecc2fe1be1ea695
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;
}