1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.nova.sankuai.domain.api.yangqianguan.response;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author weikangdi
| * @create 2022/5/17
| */
| @Data
| @ApiModel(value = "授信额度查询失败不可借响应参数")
| public class CreditLimitFailResponse extends CreditLimitResponse {
|
| @ApiModelProperty(value = "不可借原因")
| private String reason;
| }
|
|