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;
|
|
}
|