//
|
// HotelAccount.h
|
// istanbul
|
//
|
// Created by WindShan on 2017/6/13.
|
// Copyright © 2017年 WindShan. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
#import "Hotel.h"
|
|
@interface HotelAccount : NSObject
|
|
@property(nonatomic, strong) NSString * _id;
|
@property(nonatomic, strong) NSString * user_id;
|
@property(nonatomic, strong) NSString * username;
|
@property(nonatomic, strong) NSString * musicName;
|
@property(nonatomic, strong) NSString * xuhaoIndex;
|
|
@property(nonatomic, assign) int cmd; // 1 播放 2 设置默认
|
@property(nonatomic, assign) int playStatus; // 默认0 播放状态命令 1 播放操作 2 暂停操作
|
@property(nonatomic, assign) int setStatus; // 默认0 设置状态命令 1 默认设置 2 默认取消
|
@property(nonatomic, assign) NSInteger indexRow; // 当前索引
|
|
@end
|