DispatchReceiptSearchCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // RequirementReceiptSearchCell.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "SideSlipBaseTableViewCell.h"
  9. #import "BRDatePickerView.h"
  10. #import "DispatchReceiptSearchModel.h"
  11. #import "StatusInfoTextVC.h"
  12. @interface DispatchReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
  13. /**
  14. 搜索字典
  15. */
  16. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  17. /**
  18. 日历控件
  19. */
  20. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  21. /**
  22. 开始日期变量
  23. */
  24. @property (strong,nonatomic) NSString *startDate;
  25. /**
  26. 开始日期控件
  27. */
  28. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  29. /**
  30. 配送单号控件
  31. */
  32. @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
  33. /**
  34. 结束日期控件
  35. */
  36. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  37. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  38. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
  39. @property (strong, nonatomic) IBOutlet UITextField *txtReceiptNo;
  40. /**
  41. 结束日期变量
  42. */
  43. @property (strong,nonatomic) NSString *endDate;
  44. /**
  45. 回执类型
  46. */
  47. @property (strong,nonatomic) NSString *receiptType;
  48. /**
  49. 配送回执搜索模型
  50. */
  51. @property(strong,nonatomic) DispatchReceiptSearchModel *searchModel;
  52. /**
  53. 抽屉model
  54. */
  55. @property (strong,nonatomic) SideSlipModel *slideModel;
  56. @end