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
23
24
25
26
27
28
29
30
31
32
package com.nova.sankuai.domain.dto.rongbei;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "进件biz_data参数")
public class ApplyDto {
    private String chn_user_id;
 
    @ApiModelProperty(value = "流量平台导流单号", required = true, dataType = "string(32)" )
    private String chn_order_id;
 
    @ApiModelProperty(value = "联系人列表(两个联系人)", required = true, dataType = "string(32)" )
    private List<ContactListDto> contact_list;
 
    @ApiModelProperty(value = "详细资料", required = true, dataType = "list" )
    private ProfileDictDto profile_dict;
 
    @ApiModelProperty(value = "活体对比数据", required = true, dataType = "dict" )
    private LiveInfoDto live_info;
 
    @ApiModelProperty(value = "设备信息", dataType = "dict" )
    private DeviceInfoDto device_info;
 
    @ApiModelProperty(value = "产品编码", required = true, dataType = "string" )
    private String product_code;
 
}