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