// // AllCustomerViewController.h // Lighting // // Created by 曹云霄 on 16/5/6. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" @interface AllCustomerViewController : BaseViewController /** * 搜索栏背景 */ @property (weak, nonatomic) IBOutlet UIView *searchBackview; /** * 搜索栏 */ @property (weak, nonatomic) IBOutlet UITextField *searchTextfield; /** * 日期筛选起始时间 */ @property (weak, nonatomic) IBOutlet UIButton *begindateButton; /** * 日期筛选结束时间 */ @property (weak, nonatomic) IBOutlet UIButton *enddateButton; /** * 所有客户tableview */ @property (weak, nonatomic) IBOutlet UITableView *allCustomerTableview; /** * 至 */ @property (weak, nonatomic) IBOutlet UILabel *redesignLabe; /** * 最近到访时间: */ @property (weak, nonatomic) IBOutlet UILabel *RecentlydateLabe; /** * 参数模型 */ @property (nonatomic,strong) ConsumerQueryCondition *conditionModel; @end