InstallReceiptSearchCell.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //
  2. // InstallReceiptSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/8/29.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:安装回执搜索单元格
  9. #import <UIKit/UIKit.h>
  10. #import "SideSlipBaseTableViewCell.h"
  11. #import "StatusInfoTextVC.h"
  12. #import "BRDatePickerView.h"
  13. #import "DeliveryReceiptSearchModel.h"
  14. #import "SideSlipModel.h"
  15. @interface InstallReceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
  16. /**
  17. 安排单号
  18. */
  19. @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
  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 UIButton *btnReceiptType;
  32. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  33. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  34. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
  35. /**
  36. 搜索字典
  37. */
  38. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  39. /**
  40. 日历控件
  41. */
  42. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  43. /**
  44. 开始日期
  45. */
  46. @property (strong,nonatomic) NSString *startDate;
  47. /**
  48. 结束日期
  49. */
  50. @property (strong,nonatomic) NSString *endDate;
  51. /**
  52. 回执类型
  53. */
  54. @property (strong,nonatomic) NSString *receiptType;
  55. /**
  56. 安装回执搜索模型
  57. */
  58. @property(strong,nonatomic) DeliveryReceiptSearchModel *searchModel;
  59. /**
  60. 抽屉model
  61. */
  62. @property (strong,nonatomic) SideSlipModel *slideModel;
  63. @end