liukangdong
2024-09-14 087719f7e94f194a21a91de74d9d262f7d9b50c3
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    访客码
}