package com.nova.sankuai.domain.vo.capitalresult; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "资方放款发送短信VO") public class CapitalMackLoanAdoptVo { @ApiModelProperty(value = "id") private Long id; @ApiModelProperty(value = "客户姓名") private String customerUserName; @ApiModelProperty(value = "客户手机号") private String customerUserPhone; @ApiModelProperty(value = "资方名") private String capitalName; @ApiModelProperty(value = "银行卡尾号") private String lastNumber; @ApiModelProperty(value = "app名") private String appName; }