TestinModel.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // TestinModel.h
  3. // smartRhino
  4. //
  5. // Created by taidi on 2019/12/12.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol TestinModel
  11. @end
  12. /// 验证信息model
  13. @interface TestinModel : BaseModel
  14. /// 文件夹ID
  15. @property (nonatomic,assign) NSInteger Id;
  16. /// VerifyType 类型 1 单聊 2群聊 3小组
  17. @property (nonatomic,assign) NSInteger VerifyType;
  18. /// DisposeType 未处理 0 同意 1 拒绝 2
  19. @property (nonatomic,assign) NSInteger DisposeType;
  20. /// 群主ID
  21. @property (nonatomic,assign) NSInteger AdminId;
  22. /// 来源ID
  23. @property (nonatomic,assign) NSInteger SourceId;
  24. /// 用户ID
  25. @property (nonatomic,assign) NSInteger UserId;
  26. /// 姓名
  27. @property (nonatomic,strong) NSString * Name;
  28. /// 头像地址
  29. @property (nonatomic,strong) NSString * AvatarUrl;
  30. ///备注
  31. @property (nonatomic,strong) NSString * Remark;
  32. /// 来源状态 1申请 2邀请
  33. @property (nonatomic,assign) NSInteger SourceType;
  34. /// 来源名称
  35. @property (nonatomic,strong) NSString * SourceName;
  36. /// 添加时间
  37. @property (nonatomic,strong) NSString * CreatedDate;
  38. /// 是否可操作
  39. @property (nonatomic,assign) BOOL IsOperate;
  40. /// 是否可访问
  41. @property (nonatomic,assign) BOOL IsVisit;
  42. @end
  43. NS_ASSUME_NONNULL_END