zhanglin
2023-07-23 a7359ca2d8337b0796e36f3a3722790647bd7c62
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
42
43
44
45
46
47
package com.ruoyi.order.tools.response.pay.combine;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.ruoyi.order.tools.response.AbstractResponse;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <pre>
 * 微信支付通过支付通知接口将用户支付成功消息通知给商户
 * 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/combine/chapter3_7.shtml
 * </pre>
 */
@Data
@EqualsAndHashCode
@JsonIgnoreProperties()
public class CombineTransactionsNotifyResponse extends AbstractResponse {
    /**
     * <pre>
     * 字段名:返回状态码
     * 变量名:code
     * 是否必填:是
     * 类型:string[1,32]
     * 描述:
     *  错误码,SUCCESS为清算机构接收成功,其他错误码为失败。 
     *  示例值:SUCCESS 
     * </pre>
     */
    @JsonProperty(value = "code")
    private String code;
 
    /**
     * <pre>
     * 字段名:返回信息
     * 变量名:message
     * 是否必填:是
     * 类型:string[1,64]
     * 描述:
     *  返回信息,如非空,为错误原因。 
     *  示例值:系统错误 
     * </pre>
     */
    @JsonProperty(value = "message")
    private String message;
 
}