Air
2024-11-04 2016903d06e308f44b9463fcd4029850ababf152
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 CreditApplyResult {
 
    private String outerCreditApplyNo;
 
    private String creditContractNo;
 
    private String status;
 
    private String resultCode;
 
    private String resultMsg;
}