| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //
- // RequirementNoReceiptSearchCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- #import "RequirementNoReceiptSearchModel.h"
- #import "BRDatePickerView.h"
- @interface RequirementNoReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
- /**
- 安排单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
- /**
- 配送单号
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtDeliveryNo;
- /**
- 开始日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 客户名称
- */
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- /**
- 配送未回执搜素模型
- */
- @property (strong, nonatomic) RequirementNoReceiptSearchModel *searchModel;
- /**
- 配送未回执搜索字典
- */
- @property (strong,nonatomic) NSMutableDictionary *mutDict;
- /**
- 日历类
- */
- @property (strong,nonatomic) BRDatePickerView *brdatePicker;
- /**
- 开始日期
- */
- @property (strong,nonatomic) NSString *startDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- @end
|