RequirementNoReceiptSearchCell.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // RequirementNoReceiptSearchCell.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 "RequirementNoReceiptSearchModel.h"
  10. #import "BRDatePickerView.h"
  11. @interface RequirementNoReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
  12. /**
  13. 安排单号
  14. */
  15. @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
  16. /**
  17. 配送单号
  18. */
  19. @property (strong, nonatomic) IBOutlet UITextField *txtDeliveryNo;
  20. /**
  21. 开始日期
  22. */
  23. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  24. /**
  25. 结束日期
  26. */
  27. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  28. /**
  29. 客户名称
  30. */
  31. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  32. /**
  33. 配送未回执搜素模型
  34. */
  35. @property (strong, nonatomic) RequirementNoReceiptSearchModel *searchModel;
  36. /**
  37. 配送未回执搜索字典
  38. */
  39. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  40. /**
  41. 日历类
  42. */
  43. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  44. /**
  45. 开始日期
  46. */
  47. @property (strong,nonatomic) NSString *startDate;
  48. /**
  49. 结束日期
  50. */
  51. @property (strong,nonatomic) NSString *endDate;
  52. /**
  53. 抽屉model
  54. */
  55. @property (strong,nonatomic) SideSlipModel *slideModel;
  56. @end