BusinessDepartmentTreeTableViewCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // BusinessDepartmentTreeTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/21.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BRDatePickerView.h"
  10. #import "AchiementDepartmentInfoModel.h"
  11. #import "BusinessDepartmentFrame.h"
  12. #import "BusinessDepartmentDelegate.h"
  13. @interface BusinessDepartmentTreeTableViewCell : UITableViewCell
  14. /**
  15. checkbox按钮
  16. */
  17. @property (strong, nonatomic) UIButton *checkBT;
  18. /**
  19. 部门名称控件
  20. */
  21. @property (strong, nonatomic) UILabel *departmentNameLbl;
  22. /**
  23. 右箭头
  24. */
  25. @property (strong, nonatomic) UIImageView *rightArrowImg;
  26. /**
  27. 业务部门模型
  28. */
  29. @property(strong,nonatomic)AchiementDepartmentInfoModel *achievementModel;
  30. @property(strong,nonatomic)BusinessDepartmentFrame *achievementFrame;
  31. @property(strong,nonatomic)BusinessDepartmentTreeTableViewCell *cell;
  32. /**
  33. 日期控件
  34. */
  35. @property(strong,nonatomic) BRDatePickerView *brdatePicker;
  36. /**
  37. 设置 cell UI
  38. @param model <#model description#>
  39. */
  40. - (void)setUIWithModel:(BusinessDepartmentFrame *)frame;
  41. @property (nonatomic,weak) id<BusinessDepartmentDelegate> delegate;
  42. @end