| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //
- // RequirementNoReceiptSearchCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- #import "DispatchNoReceiptSearchModel.h"
- #import "BRDatePickerView.h"
- @interface DispatchNoReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
- /**
- 安排单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtDispatchArrangementNo;
- /**
- 配送单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtTelephone;
- /**
- 开始日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnDispatchStartDate;
- /**
- 结束日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnDispatchEndDate;
- /**
- 客户名称
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtDispatchCustomerName;
- /**
- 配送未回执搜素模型
- */
- @property (strong, nonatomic) DispatchNoReceiptSearchModel *dispatchSearchModel;
- /**
- 配送未回执搜索字典
- */
- @property (strong,nonatomic) NSMutableDictionary *multDict;
- /**
- 日历类
- */
- @property (strong,nonatomic) BRDatePickerView *brDatePicker;
- /**
- 开始日期
- */
- @property (strong,nonatomic) NSString *dispatchStartDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) NSString *dispatchEndDate;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *dispatchSlideModel;
- @end
|