| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //
- // RequirementReceiptSearchCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- #import "BRDatePickerView.h"
- #import "RequirementReceiptSearchModel.h"
- #import "StatusInfoTextVC.h"
- @interface RequirementReceiptSearchCell : 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 *txtDeliveryNo;
- /**
- 结束日期控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 回执类型控件
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnReceiptType;
- /**
- 结束日期变量
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) NSString *receiptType;
- /**
- 配送回执搜索模型
- */
- @property(strong,nonatomic) RequirementReceiptSearchModel *searchModel;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- @end
|