ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
32
33
34
35
36
37
38
39
40
41
42
package com.nova.sankuai.domain.vo.customer;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2021/11/26
 */
@Data
@ApiModel(value = "机构配置信息Vo")
public class CustomerMechanismConfigVo {
 
    @ApiModelProperty(value = "客户记录Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long customerId;
 
    @ApiModelProperty(value = "机构Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long mechanismId;
 
    @ApiModelProperty(value = "产品名称")
    private String product;
 
    @ApiModelProperty(value = "机构Logo路径")
    private String iconUrl;
 
    @ApiModelProperty(value = "额度")
    private Integer amountLimit;
 
    @ApiModelProperty(value = "年利率")
    private Double annualInterestRate;
 
    @ApiModelProperty(value = "服务速度")
    private Integer serviceSpeed;
 
    @ApiModelProperty(value = "单数")
    private Integer customerNum;
 
}