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
25
26
27
28
29
30
31
package com.nova.sankuai.domain.api.yangqianguan.response;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/5/17
 */
@ApiModel(value = "授信额度查询响应参数")
@Data
public class CreditLimitResponse {
 
    @ApiModelProperty(value = "可借")
    public static final Integer STATUS_SUCCESS = 1;
    @ApiModelProperty(value = "不可借")
    public static final Integer STATUS_FAIL = 2;
 
    @JsonProperty("credit_no")
    @ApiModelProperty(value = "授信编号")
    private String creditNo;
 
    /**
     * 1-可借 2-不可借
     */
    @ApiModelProperty(value = "额度状态")
    private Integer status;
 
}