// // HDLEZVideoDoorMsgCell.h // EZSDK // // Created by Davin on 2023/6/15. // #import NS_ASSUME_NONNULL_BEGIN @interface HDLEZVideoDoorMsgCell : UITableViewCell /// 配置门锁历史消息记录 /// - Parameters: /// - title: 消息标题 /// - deviceStatus: 设备状态 /// - time: 消息生成时间 /// - messageUrl: 消息图片 - (void)configMessageInfoWithTitle:(NSString *)title deviceStatus:(NSString *)deviceStatus messageTime:(NSString *)time messageImage:(NSString *)messageUrl; /// 是否展示分割线 /// - Parameter isShow: 是否展示 - (void)showSpearator:(BOOL)isShow; @end NS_ASSUME_NONNULL_END