Sunshine
2024-11-04 919ed870ea1def0cfdd1dff23bec204975e7f34c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.nova.sankuai.domain.api.zhongan;
 
import lombok.Data;
 
/**
 * <p>
 * description
 * </p>
 *
 * @author denglb 2021/11/15
 */
@Data
public class DuolaiResult<T> {
 
    private String respCode;
 
    private String respMsg;
 
    private String reqNo;
 
    private String respNo;
 
    private T result;
}