| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // DeliveryReceiptSearchCell.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 "BRDatePickerView.h"
- #import "DeliveryReceiptSearchModel.h"
- #import "StatusInfoTextVC.h"
- @interface DeliveryReceiptSearchCell : 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) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
- /**
- 结束日期变量
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) NSString *receiptType;
- /**
- 配送回执搜索模型
- */
- @property(strong,nonatomic) DeliveryReceiptSearchModel *searchModel;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- @end
|