puzhibing
2024-01-26 77fe3ee1270642e04f6c93aad0e63d2b13c78342
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
package com.ruoyi.shop.domain.dto;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/10/20 18:47
 */
@Data
public class MerchantBasicDataNotifyDto {
    /**
     * 网关返回码
     */
    private String resp_code;
    /**
     * 网关返回描述
     */
    private String resp_desc;
    /***
     * 签名
     */
    private String sign;
    /**
     * 业务数据
     */
    private String data;
}