SingleProfitAnalyzeListSearchCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // SingleProfitAnalyzeListSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/4/11.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. #import "BRDatePickerView.h"
  11. #import "DateFormat.h"
  12. #import "UIColor+hexColor.h"
  13. #import "SideSlipConfig.h"
  14. #import "CustomerReportTextProtocol.h"
  15. #import "SingleProfitAnalyseSearchModel.h"
  16. @interface SingleProfitAnalyzeListSearchCell : SideSlipBaseTableViewCell<CustomerReportTextProtocol>
  17. @property (strong, nonatomic) IBOutlet UIButton *btnDepartment;
  18. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  19. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  20. @property (strong, nonatomic) IBOutlet UIButton *btnBusinessType;
  21. @property (strong,nonatomic) SideSlipModel *regionModel;
  22. @property (strong,nonatomic) BRDatePickerView *dealDatePicker;
  23. @property (copy, nonatomic) NSString *organizationCode;
  24. /**
  25. 开始日期
  26. */
  27. @property (strong, nonatomic) IBOutlet UIButton *btnSalesSlip;
  28. @property (copy, nonatomic) NSString *sAccountStartDate;
  29. /**
  30. 结束日期
  31. */
  32. @property (strong, nonatomic) IBOutlet UIButton *btnSalesOrder;
  33. @property (copy, nonatomic) NSString *sAccountEndDate;
  34. /**
  35. 开始日期
  36. */
  37. @property (copy, nonatomic) NSString *tempAccountStartDate;
  38. /**
  39. 结束日期
  40. */
  41. @property (copy, nonatomic) NSString *tempAccountEndDate;
  42. /**
  43. 存储选择的排序方式
  44. */
  45. @property (copy, nonatomic) UIButton *selectLable;
  46. @end