eight
2024-11-28 d1708b4b2bc6596f9c62354274f1af97be45401c
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
package cn.lihu.jh.module.system.api.social.dto;
 
import lombok.Data;
 
/**
 * 微信公众号 JSAPI 签名 Response DTO
 *
 * @author 芋道源码
 */
@Data
public class SocialWxJsapiSignatureRespDTO {
 
    /**
     * 微信公众号的 appId
     */
    private String appId;
    /**
     * 匿名串
     */
    private String nonceStr;
    /**
     * 时间戳
     */
    private Long timestamp;
    /**
     * URL
     */
    private String url;
    /**
     * 签名
     */
    private String signature;
 
}