2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}