| 123456789101112131415161718192021222324252627 |
- //
- // HistoryOrderSearchTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/23.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "HistoryOrderSearchModel.h"
- #import "BRDatePickerView.h"
- #define SEARCH_RANGE_MODEL @"SEARCH_RANGE_MODEL"
- @interface HistoryOrderSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
- @property (strong, nonatomic) IBOutlet UITextField *txtOrderNO;//订单号
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;//客户名称
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;//客户编码
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;//客户地址
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;//开始日期
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;//结束日期
- @property(nonatomic,strong)SideSlipModel * slideModel;//订单搜索工具类
- @property(nonatomic,strong) NSMutableDictionary *mutDict;//订单搜索字典
- @property (nonatomic,strong)HistoryOrderSearchModel *searchModel;//搜索类
- @property(strong)BRDatePickerView *brDatePicker;//日历控件
- @property(copy, nonatomic) NSString *startDate;//开始日期
- @property(copy, nonatomic) NSString *endDate;//结束日期3
- @end
|