AllCutomerTableViewCell.h 1022 Bytes
//
//  AllCutomerTableViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/6.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "MyclientEntityModel.h"
@interface AllCutomerTableViewCell : UITableViewCell




/**
 *  content背景View
 */
@property (weak, nonatomic) IBOutlet UIView *contentBackView;


/**
 *  客户头像
 */
@property (weak, nonatomic) IBOutlet UIImageView *customerHeader;


/**
 *  客户名称
 */
@property (weak, nonatomic) IBOutlet UILabel *customerName;

/**
 *  联系电话
 */
@property (weak, nonatomic) IBOutlet UILabel *customerPhoneName;


/**
 *  最近到访时间
 */
@property (weak, nonatomic) IBOutlet UILabel *cutomerTime;


/**
 *  服务导购
 */
@property (weak, nonatomic) IBOutlet UILabel *serviceName;


/**
 *  客户地址
 */
@property (weak, nonatomic) IBOutlet UILabel *customerAddress;


/**
 *  数据源model
 */
@property (nonatomic,strong) MyclientEntityModel *Model;




















@end