| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // DeliveryUnreceiptSearchCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/28.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:配送未回执搜索单元格
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "DeliveryUnReceiptSearchModel.h"
- #import "BRDatePickerView.h"
- @interface DeliveryUnreceiptSearchCell : 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) IBOutlet UITextField *txtCustomerAddress;
- /**
- 配送未回执搜素模型
- */
- @property (strong, nonatomic) DeliveryUnReceiptSearchModel *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
|