| 1234567891011121314151617181920212223242526 |
- //
- // BusinessDepartmentFrame.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/1/31.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "BusinessDepartmentModel.h"
- #import "NSString+Tools.h"
- @interface DepartmentFrame : NSObject<NSCopying>
- @property(nonatomic,strong)BusinessDepartmentModel* departmentModel;
- @property (nonatomic, assign)CGFloat cellHeight;
- @property (nonatomic, assign)CGRect checkboxF;
- @property (nonatomic, assign)CGRect organizationNameTitleF;
- @property (nonatomic, assign)CGRect organizationNameF;
- @property (nonatomic, assign)CGRect organizationFullNameTitleF;
- @property (nonatomic, assign)CGRect organizationFullNameF;
- @property (nonatomic, assign)CGRect organizationCodeTitleF;
- @property (nonatomic, assign)CGRect organizationCodeF;
- @property (nonatomic, assign)CGRect mainDepartmentTitleF;
- @property (nonatomic, assign)CGRect mainDepartmentF;
- @property (nonatomic, assign)CGRect separatorF;
- -(void)setBusinessDepartmentFrame:(BusinessDepartmentModel *)deptModel;
- @end
|