| package com.doumee.dao.web.reqeust; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/2/29 14:26 | 
|  */ | 
| @Data | 
| @ApiModel("ERP访客申请 随访人信息") | 
| public class ErpWithVisitDTO { | 
|   | 
|     @ApiModelProperty(value = "访客姓名") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String phone; | 
|   | 
|     @ApiModelProperty(value = "证件类型 0身份证 1港澳证件 2护照") | 
|     private Integer idcardType; | 
|   | 
|     @ApiModelProperty(value = "证件号") | 
|     private String idcardNo; | 
|   | 
|     @ApiModelProperty(value = "人脸照片") | 
|     private String faceImg; | 
|   | 
|     @ApiModelProperty(value = "健康证") | 
|     private String imgurl; | 
|   | 
|     @ApiModelProperty(value = "公司名称") | 
|     private String companyName; | 
|   | 
|     @ApiModelProperty(value = "车牌号") | 
|     private String carNos; | 
|   | 
|      | 
|   | 
| } |