peter
2026-01-15 0ababc615d5b381f856ca84fb8dc715cdb2c4b5b
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;
}