zhanglin
2023-07-20 cde69bd6e9ce00b22df3690d85ea295459e3b168
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.ecommerce.profitsharing;
 
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>
 * 1、此功能仅针对分账接收方。 2、分账动账金额变动后,微信会把相关变动结果发送给需要实时关注的分账接收方。
 * 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/ecommerce/profitsharing/chapter3_6.shtml
 * </pre>
 */
@Data
@EqualsAndHashCode
@JsonIgnoreProperties()
public class ProfitSharingNotifyResponse extends AbstractResponse {
    /**
     * <pre>
     * 字段名:返回状态码
     * 变量名:code
     * 是否必填:是
     * 类型:string[1,32]
     * 描述:
     *  错误码,SUCCESS为接收成功,其他错误码为失败。 
     *  示例值:SUCCESS 
     * </pre>
     */
    @JsonProperty(value = "code")
    private String code;
 
    /**
     * <pre>
     * 字段名:返回信息
     * 变量名:message
     * 是否必填:否
     * 类型:string[1,256]
     * 描述:
     *  返回信息,如非空,为错误原因。
     *  示例值:系统错误 
     * </pre>
     */
    @JsonProperty(value = "message")
    private String message;
 
}