Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
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
package com.nova.sankuai.domain.dto.rongbei;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "准入接口VO")
public class CheckDto {
    @ApiModelProperty(value = "手机号md5,小写", required = true, dataType = "string(32)" )
    private String md5_phone;
 
    @ApiModelProperty(value = "身份证号md5,小写", required = true, dataType = "string(32)" )
    private String md5_idcard;
 
    @ApiModelProperty(value = "身份证号前六位", required = true, dataType = "string(32)" )
    private String pre_id_no;
 
    @ApiModelProperty(value = "手机号掩码,后四位掩码", required = true, dataType = "string(8)" )
    private String mask_phone;
 
    @ApiModelProperty(value = "身份证号后五位掩码", required = true, dataType = "string(8)" )
    private String mask_idcard;
 
}