EmployeeTableViewCell.h 647 B

1234567891011121314151617181920212223242526
  1. //
  2. // EmployeeTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/5/18.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EmployeObject.h"
  10. @interface EmployeeTableViewCell : UITableViewCell
  11. //@property (strong, nonatomic) UILabel *detailedLabel;
  12. @property (strong, nonatomic) UILabel *customTitleLabel;
  13. @property (strong, nonatomic) UIImageView * headImageView;
  14. @property (strong, nonatomic) UILabel * positionLabel;
  15. @property (nonatomic, strong) UIView *line;
  16. @property (strong, nonatomic) EmployeObject *employObject;
  17. - (void)setupWithData:(EmployeObject *)dataObj level:(NSInteger)level;
  18. @end