// // WKRobotDB.h // WuKongIMSDK // // Created by tt on 2021/10/19. // #import #import "WKRobot.h" NS_ASSUME_NONNULL_BEGIN @interface WKRobotDB : NSObject + (WKRobotDB *)shared; /// 查询robot -(NSArray*) queryRobots:(NSArray*)robotIDs; -(void) addOrUpdateRobots:(NSArray*)robots; -(WKRobot*) queryRobotWithUsername:(NSString*)username; -(NSArray*) queryRobotsWithUsernames:(NSArray*)usernames; @end NS_ASSUME_NONNULL_END