xin
2025-07-10 a30d166148f0c385562eb748e5a81420b5ba93d6
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
package com.oying.modules.hwc.domain;
 
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Getter;
import lombok.Setter;
 
/**
 * @author xin
 * @description
 * @date 2025/1/23 下午9:56
 */
@Getter
@Setter
public class HwcResponse {
 
    @JSONField(name = "appId")
    private String appId;
    @JSONField(name = "timeStamp")
    private String timeStamp;
    @JSONField(name = "nonceStr")
    private String nonceStr;
    @JSONField(name = "package")
    private String packageVal;
    @JSONField(name = "signType")
    private String signType;
    @JSONField(name = "paySign")
    private String paySign;
    @JSONField(name = "status")
    private String status;
}