12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // SysUser.h
- //
- // Created by on 2020/7/14
- // Copyright (c) 2020 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface SysUser : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *username;
- @property (nonatomic, assign) BOOL superAdmin;
- @property (nonatomic, assign) double lockFlag;
- @property (nonatomic, strong) NSString *updateTime;
- @property (nonatomic, strong) NSString *realName;
- @property (nonatomic, strong) NSString *userType;
- @property (nonatomic, strong) NSString *wxOpenid;
- @property (nonatomic, assign) double delFlag;
- @property (nonatomic, strong) NSString *nation;
- @property (nonatomic, strong) NSString *salt;
- @property (nonatomic, assign) double sysUserIdentifier;
- @property (nonatomic, assign) double roles;
- @property (nonatomic, assign) double gender;
- @property (nonatomic, strong) NSString *email;
- @property (nonatomic, strong) NSString *phone;
- @property (nonatomic, strong) NSString *birthdate;
- @property (nonatomic, strong) NSString *idCardNo;
- @property (nonatomic, strong) NSString *avatar;
- @property (nonatomic, assign) BOOL isSuperAdmin;
- @property (nonatomic, strong) NSString *imToken;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *password;
- @property (nonatomic, strong) NSString *qqOpenid;
- @property (nonatomic, strong) NSString *wechatId;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|