P15GEN2\59518
2025-10-10 9f6890646993d16260d4201d613c092132856127
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package biz.esign.weaver.dao;
 
public class CallbackData {
    private static final long serialVersionUID = 1L;
    private String signature;     // 签名字符串
    private Long timestamp;     // 时间戳,精确到毫秒
    private String nonce;         // 随机字符串
    private String encrypted;     // 加密后回调内容
    
    public String getSignature() {
        return signature;
    }
    
    public void setSignature(String signature) {
        this.signature = signature;
    }
    
    public Long getTimestamp() {
        return timestamp;
    }
    
    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
    
    public String getNonce() {
        return nonce;
    }
    
    public void setNonce(String nonce) {
        this.nonce = nonce;
    }
    
    public String getEncrypted() {
        return encrypted;
    }
    
    public void setEncrypted(String encrypted) {
        this.encrypted = encrypted;
    }
}