// // Customermanager.h // Lighting // // Created by 曹云霄 on 16/5/12. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import #import "MyclientEntityModel.h" @interface Customermanager : NSObject /** * 客户个人信息 */ + (Customermanager *)manager; //** // * 客户iD // */ //@property (nonatomic,copy) NSString *customerID; // //** // * 客户姓名 // */ //@property (nonatomic,copy) NSString *customerName; // //** // * 客户手机号码 // */ //@property (nonatomic,copy) NSString *customerPhoneNumber; // //** // * 客户公司名字 // */ //@property (nonatomic,copy) NSString *companyName; // //** // * 客户地址 // */ //@property (nonatomic,copy) NSString *cutomerAddress; // //** // * header // */ //@property (nonatomic,copy) NSString *header; /** * 用户信息模型 */ @property (nonatomic,strong) MyclientEntityModel *model; @end