RequirementReceiptSearchCell.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 "RequirementReceiptSearchModel.h"
  11. #import "StatusInfoTextVC.h"
  12. @interface RequirementReceiptSearchCell : 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 *txtDeliveryNo;
  33. /**
  34. 结束日期控件
  35. */
  36. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  37. /**
  38. 回执类型控件
  39. */
  40. @property (strong, nonatomic) IBOutlet UIButton *btnReceiptType;
  41. /**
  42. 结束日期变量
  43. */
  44. @property (strong,nonatomic) NSString *endDate;
  45. /**
  46. 回执类型
  47. */
  48. @property (strong,nonatomic) NSString *receiptType;
  49. /**
  50. 配送回执搜索模型
  51. */
  52. @property(strong,nonatomic) RequirementReceiptSearchModel *searchModel;
  53. /**
  54. 抽屉model
  55. */
  56. @property (strong,nonatomic) SideSlipModel *slideModel;
  57. @end