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
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/16
 */
@Data
@ApiModel(value = "洋钱罐授信申请响应参数")
public class CreditApplyResponse {
 
    @ApiModelProperty(value = "机构授信编号")
    @JsonProperty("agency_credit_no")
    private String agencyCreditNo;
}