HistoryOrderSearchTableViewCell.h 1.3 KB

123456789101112131415161718192021222324252627
  1. //
  2. // HistoryOrderSearchTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/23.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. #import "HistoryOrderSearchModel.h"
  11. #import "BRDatePickerView.h"
  12. #define SEARCH_RANGE_MODEL @"SEARCH_RANGE_MODEL"
  13. @interface HistoryOrderSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
  14. @property (strong, nonatomic) IBOutlet UITextField *txtOrderNO;//订单号
  15. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;//客户名称
  16. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;//客户编码
  17. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;//客户地址
  18. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;//开始日期
  19. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;//结束日期
  20. @property(nonatomic,strong)SideSlipModel * slideModel;//订单搜索工具类
  21. @property(nonatomic,strong) NSMutableDictionary *mutDict;//订单搜索字典
  22. @property (nonatomic,strong)HistoryOrderSearchModel *searchModel;//搜索类
  23. @property(strong)BRDatePickerView *brDatePicker;//日历控件
  24. @property(copy, nonatomic) NSString *startDate;//开始日期
  25. @property(copy, nonatomic) NSString *endDate;//结束日期3
  26. @end