| | |
| | | |
| | | @interface UserModel : NSObject |
| | | @property(nonatomic, strong) NSString * _id; |
| | | @property(nonatomic, strong) NSString * username; |
| | | @property(nonatomic, strong) NSString * password; |
| | | @property(nonatomic, strong) NSString * nickname; |
| | | @property(nonatomic, assign) int opt;//opt=1表示运维人员,opt=2表示酒店前台 |
| | | @property(nonatomic, strong) NSString * hotel_id; |
| | | @property(nonatomic, strong) NSString * is_lock; |
| | | @property(nonatomic, strong) NSString * is_open_upload;//是否开启上传 |
| | | @property(nonatomic, strong) NSString * phone;//手机号码 |
| | | @property(nonatomic, strong) NSString * refresh_frequency;//刷新频率 |
| | | @property(nonatomic, strong) NSString * video; |
| | | |
| | | @end |