BusinessDepartmentFrame.h 705 B

12345678910111213141516171819
  1. //
  2. // BusinessDepartmentFrame.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/22.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "AchiementDepartmentInfoModel.h"
  10. @interface BusinessDepartmentFrame : NSObject
  11. @property (nonatomic, assign, readonly)CGRect checkBtF;
  12. @property (nonatomic, assign, readonly)CGRect departmentF;
  13. @property (nonatomic, assign, readonly)CGRect rightArrowF;
  14. @property (nonatomic, assign, readonly)CGRect separatorF;
  15. @property(nonatomic,assign) CGFloat cellHeight;
  16. @property (nonatomic,strong)AchiementDepartmentInfoModel *departmentModel;
  17. -(void)setDepartmentFrame:(AchiementDepartmentInfoModel*)departmentModel;
  18. @end