31 lines
886 B
Objective-C
31 lines
886 B
Objective-C
//
|
|
// TracelessUser.h
|
|
// JjyxSdk
|
|
//
|
|
// Created by Mac on 2017/5/2.
|
|
// Copyright © 2017年 wanqi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "VSAddChildBean.h"
|
|
|
|
@interface TracelessUser : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *username;
|
|
@property (nonatomic,copy) NSString *passwd;
|
|
@property(nonatomic,assign)NSInteger type;
|
|
@property(nonatomic,assign)NSInteger uid;
|
|
@property(nonatomic,copy)NSString *token;
|
|
@property(nonatomic,copy)NSString *secrect;
|
|
@property(nonatomic,copy)NSString *mobile;
|
|
@property(nonatomic,assign)NSInteger fcm;
|
|
|
|
@property(nonatomic,strong)NSMutableArray *suser;
|
|
@property(nonatomic,strong) Suser *lastChildUser;
|
|
|
|
-(instancetype) initWithName:(NSString *) name passWrod:(NSString *)pass userType:(int)usertype uid:(int)uid token:(NSString *)token secrect:(NSString *)secrect mobile:(NSString *) mobile fcm:(int)fcm;
|
|
|
|
|
|
|
|
@end
|