DeliveryUnreceiptSearchCell.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. //
  2. // DeliveryUnreceiptSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/8/28.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:配送未回执搜索单元格
  9. #import <UIKit/UIKit.h>
  10. #import "SideSlipBaseTableViewCell.h"
  11. #import "DeliveryUnReceiptSearchModel.h"
  12. #import "BRDatePickerView.h"
  13. @interface DeliveryUnreceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
  14. /**
  15. 安排单号
  16. */
  17. @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
  18. /**
  19. 配送单号
  20. */
  21. @property (strong, nonatomic) IBOutlet UITextField *txtDeliveryNo;
  22. /**
  23. 开始日期
  24. */
  25. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  26. /**
  27. 结束日期
  28. */
  29. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  30. /**
  31. 客户名称
  32. */
  33. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  34. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  35. /**
  36. 配送未回执搜素模型
  37. */
  38. @property (strong, nonatomic) DeliveryUnReceiptSearchModel *searchModel;
  39. /**
  40. 配送未回执搜索字典
  41. */
  42. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  43. /**
  44. 日历类
  45. */
  46. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  47. /**
  48. 开始日期
  49. */
  50. @property (strong,nonatomic) NSString *startDate;
  51. /**
  52. 结束日期
  53. */
  54. @property (strong,nonatomic) NSString *endDate;
  55. /**
  56. 抽屉model
  57. */
  58. @property (strong,nonatomic) SideSlipModel *slideModel;
  59. @end