jiangping
2024-09-25 7161f1002609e1d9db0a18fe0f6833c23c391c65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.core.haikang.model.param.respose;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class IccmAppointmentInfoResponse {
    private String visitorName;//    String    false    访客姓名
    private String QRCode;//    String    false    二维码信息
    private String receptionistId;//    String    false    被访人id
    private String receptionistName;//    String    false    被访人姓名
    private String svrIndexCode    ;//String    false    图片存储服务的唯一标识
    private String picUri;//    String    false    访客头像,图片的相对URL
    private String verificationCode;//    String    false    访客码
}