| 12345678910111213141516171819 |
- //
- // BusinessDepartmentFrame.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/9/22.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "AchiementDepartmentInfoModel.h"
- @interface BusinessDepartmentFrame : NSObject
- @property (nonatomic, assign, readonly)CGRect checkBtF;
- @property (nonatomic, assign, readonly)CGRect departmentF;
- @property (nonatomic, assign, readonly)CGRect rightArrowF;
- @property (nonatomic, assign, readonly)CGRect separatorF;
- @property(nonatomic,assign) CGFloat cellHeight;
- @property (nonatomic,strong)AchiementDepartmentInfoModel *departmentModel;
- -(void)setDepartmentFrame:(AchiementDepartmentInfoModel*)departmentModel;
- @end
|