Shoppersmanager.h 691 Bytes
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
//
//  Shoppersmanager.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/10.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "opple_objc_json_client.h"
@interface Shoppersmanager : NSObject



/**
 *  导购个人信息Jastor对象
 */
@property (nonatomic,strong) LoginResult *Shoppers;



/**
 *  导购个人信息类单例
 */
+ (Shoppersmanager *)manager;



/**
 *  账号
 */
@property (nonatomic,copy) NSString *userNameString;


/**
 *  密码
 */
@property (nonatomic,copy) NSString *passWordString;

勾芒's avatar
勾芒 committed
40 41 42 43
/**
 *  是否设置了当前客户
 */
@property (nonatomic,assign) BOOL currentCustomer;
曹云霄's avatar
曹云霄 committed
44 45


勾芒's avatar
勾芒 committed
46

勾芒's avatar
勾芒 committed
47

勾芒's avatar
勾芒 committed
48 49 50



曹云霄's avatar
曹云霄 committed
51
@end