| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // RequirementReceiptSearchCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- #import "BRDatePickerView.h"
- #import "DispatchReceiptSearchModel.h"
- #import "StatusInfoTextVC.h"
- @interface DispatchReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
- /**
- 搜索字典
- */
- @property (strong,nonatomic) NSMutableDictionary *mutDict;
- /**
- 日历控件
- */
- @property (strong,nonatomic) BRDatePickerView *brdatePicker;
- /**
- 开始日期变量
- */
- @property (strong,nonatomic) NSString *startDate;
- /**
- 开始日期控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 配送单号控件
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
- /**
- 结束日期控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
- @property (strong, nonatomic) IBOutlet UITextField *txtReceiptNo;
- /**
- 结束日期变量
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) NSString *receiptType;
- /**
- 配送回执搜索模型
- */
- @property(strong,nonatomic) DispatchReceiptSearchModel *searchModel;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- @end
|