1
sunshine
2024-11-05 92a9e53e82c74d36a72eb92f93777bbb16e2db73
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
package com.nova.sankuai.domain.api.yangqianguan.response;
 
import com.nova.sankuai.domain.api.yangqianguan.vo.TermVo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author weikangdi
 * @create 2022/5/17
 */
@Data
@ApiModel(value = "授信额度查询成功可借响应参数")
public class CreditLimitSuccessResponse extends CreditLimitResponse{
 
    @ApiModelProperty(value = "额度状态")
    private Integer status;
 
    @ApiModelProperty(value = "期限信息")
    private List<TermVo> terms;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
}