| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // InstallUnreceiptSearchCellTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/29.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:安装未回执搜索单元格
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "BRDatePickerView.h"
- #import "InstallUnreceiptSearchModel.h"
- @interface InstallUnreceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
- /**
- 安排单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
- /**
- 安装单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtInstallationNo;
- /**
- 开始日期控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束日期控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 客户名称
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- /**
- 搜索字典
- */
- @property (strong,nonatomic) NSMutableDictionary *mutDict;
- /**
- 日历控件
- */
- @property (strong,nonatomic) BRDatePickerView *brdatePicker;
- /**
- 开始日期
- */
- @property (strong,nonatomic) NSString *startDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 安装未回执搜索模型
- */
- @property (strong,nonatomic) InstallUnreceiptSearchModel *searchModel;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- @end
|