doum
2025-09-28 9ab109b9ee96e7ff2bf2b935a044aee5842a3ddc
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    访客码
}