1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // TestinModel.h
- // smartRhino
- //
- // Created by taidi on 2019/12/12.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol TestinModel
- @end
- /// 验证信息model
- @interface TestinModel : BaseModel
- /// 文件夹ID
- @property (nonatomic,assign) NSInteger Id;
- /// VerifyType 类型 1 单聊 2群聊 3小组
- @property (nonatomic,assign) NSInteger VerifyType;
- /// DisposeType 未处理 0 同意 1 拒绝 2
- @property (nonatomic,assign) NSInteger DisposeType;
- /// 群主ID
- @property (nonatomic,assign) NSInteger AdminId;
- /// 来源ID
- @property (nonatomic,assign) NSInteger SourceId;
- /// 用户ID
- @property (nonatomic,assign) NSInteger UserId;
- /// 姓名
- @property (nonatomic,strong) NSString * Name;
- /// 头像地址
- @property (nonatomic,strong) NSString * AvatarUrl;
- ///备注
- @property (nonatomic,strong) NSString * Remark;
- /// 来源状态 1申请 2邀请
- @property (nonatomic,assign) NSInteger SourceType;
- /// 来源名称
- @property (nonatomic,strong) NSString * SourceName;
- /// 添加时间
- @property (nonatomic,strong) NSString * CreatedDate;
- /// 是否可操作
- @property (nonatomic,assign) BOOL IsOperate;
- /// 是否可访问
- @property (nonatomic,assign) BOOL IsVisit;
- @end
- NS_ASSUME_NONNULL_END
|