DepartmentFrame.h 1.0 KB

1234567891011121314151617181920212223242526
  1. //
  2. // BusinessDepartmentFrame.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/1/31.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "BusinessDepartmentModel.h"
  10. #import "NSString+Tools.h"
  11. @interface DepartmentFrame : NSObject<NSCopying>
  12. @property(nonatomic,strong)BusinessDepartmentModel* departmentModel;
  13. @property (nonatomic, assign)CGFloat cellHeight;
  14. @property (nonatomic, assign)CGRect checkboxF;
  15. @property (nonatomic, assign)CGRect organizationNameTitleF;
  16. @property (nonatomic, assign)CGRect organizationNameF;
  17. @property (nonatomic, assign)CGRect organizationFullNameTitleF;
  18. @property (nonatomic, assign)CGRect organizationFullNameF;
  19. @property (nonatomic, assign)CGRect organizationCodeTitleF;
  20. @property (nonatomic, assign)CGRect organizationCodeF;
  21. @property (nonatomic, assign)CGRect mainDepartmentTitleF;
  22. @property (nonatomic, assign)CGRect mainDepartmentF;
  23. @property (nonatomic, assign)CGRect separatorF;
  24. -(void)setBusinessDepartmentFrame:(BusinessDepartmentModel *)deptModel;
  25. @end