提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.api.social.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
@Schema(description = "RPC 服务 - 微信公众号 JSAPI 签名 Response DTO") |
|
7 |
@Data |
|
8 |
public class SocialWxJsapiSignatureRespDTO { |
|
9 |
|
|
10 |
@Schema(description = "微信公众号的 appId", requiredMode = Schema.RequiredMode.REQUIRED, example = "wx123456") |
|
11 |
private String appId; |
|
12 |
|
|
13 |
@Schema(description = "匿名串", requiredMode = Schema.RequiredMode.REQUIRED, example = "zsw") |
|
14 |
private String nonceStr; |
|
15 |
|
|
16 |
@Schema(description = "时间戳", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456789") |
|
17 |
private Long timestamp; |
|
18 |
|
|
19 |
@Schema(description = "URL", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.baidu.com") |
|
20 |
private String url; |
|
21 |
|
|
22 |
@Schema(description = "签名", requiredMode = Schema.RequiredMode.REQUIRED, example = "zsw") |
|
23 |
private String signature; |
|
24 |
|
|
25 |
} |