| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // BusinessDepartmentTreeTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/9/21.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BRDatePickerView.h"
- #import "AchiementDepartmentInfoModel.h"
- #import "BusinessDepartmentFrame.h"
- #import "BusinessDepartmentDelegate.h"
- @interface BusinessDepartmentTreeTableViewCell : UITableViewCell
- /**
- checkbox按钮
- */
- @property (strong, nonatomic) UIButton *checkBT;
- /**
- 部门名称控件
- */
- @property (strong, nonatomic) UILabel *departmentNameLbl;
- /**
- 右箭头
- */
- @property (strong, nonatomic) UIImageView *rightArrowImg;
- /**
- 业务部门模型
- */
- @property(strong,nonatomic)AchiementDepartmentInfoModel *achievementModel;
- @property(strong,nonatomic)BusinessDepartmentFrame *achievementFrame;
- @property(strong,nonatomic)BusinessDepartmentTreeTableViewCell *cell;
- /**
- 日期控件
- */
- @property(strong,nonatomic) BRDatePickerView *brdatePicker;
- /**
- 设置 cell UI
- @param model <#model description#>
- */
- - (void)setUIWithModel:(BusinessDepartmentFrame *)frame;
- @property (nonatomic,weak) id<BusinessDepartmentDelegate> delegate;
- @end
|