DeliveryReceiptSearchCell.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // DeliveryReceiptSearchCell.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 "BRDatePickerView.h"
  12. #import "DeliveryReceiptSearchModel.h"
  13. #import "StatusInfoTextVC.h"
  14. @interface DeliveryReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
  15. /**
  16. 搜索字典
  17. */
  18. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  19. /**
  20. 日历控件
  21. */
  22. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  23. /**
  24. 开始日期变量
  25. */
  26. @property (strong,nonatomic) NSString *startDate;
  27. /**
  28. 开始日期控件
  29. */
  30. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  31. /**
  32. 配送单号控件
  33. */
  34. @property (strong, nonatomic) IBOutlet UITextField *txtDeliveryNo;
  35. /**
  36. 结束日期控件
  37. */
  38. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  39. /**
  40. 回执类型控件
  41. */
  42. @property (strong, nonatomic) IBOutlet UIButton *btnReceiptType;
  43. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  44. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  45. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
  46. /**
  47. 结束日期变量
  48. */
  49. @property (strong,nonatomic) NSString *endDate;
  50. /**
  51. 回执类型
  52. */
  53. @property (strong,nonatomic) NSString *receiptType;
  54. /**
  55. 配送回执搜索模型
  56. */
  57. @property(strong,nonatomic) DeliveryReceiptSearchModel *searchModel;
  58. /**
  59. 抽屉model
  60. */
  61. @property (strong,nonatomic) SideSlipModel *slideModel;
  62. @end