InstallUnreceiptSearchCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // InstallUnreceiptSearchCellTableViewCell.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 "BRDatePickerView.h"
  12. #import "InstallUnreceiptSearchModel.h"
  13. @interface InstallUnreceiptSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
  14. /**
  15. 安排单号
  16. */
  17. @property (strong, nonatomic) IBOutlet UITextField *txtArrangementNo;
  18. /**
  19. 安装单号
  20. */
  21. @property (strong, nonatomic) IBOutlet UITextField *txtInstallationNo;
  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. /**
  35. 搜索字典
  36. */
  37. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  38. /**
  39. 日历控件
  40. */
  41. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  42. /**
  43. 开始日期
  44. */
  45. @property (strong,nonatomic) NSString *startDate;
  46. /**
  47. 结束日期
  48. */
  49. @property (strong,nonatomic) NSString *endDate;
  50. /**
  51. 安装未回执搜索模型
  52. */
  53. @property (strong,nonatomic) InstallUnreceiptSearchModel *searchModel;
  54. /**
  55. 抽屉model
  56. */
  57. @property (strong,nonatomic) SideSlipModel *slideModel;
  58. @end