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