StudentTableCell.h 957 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // StudentTableCell.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 16/3/7.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface StudentTableCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *headImg;
  11. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *sexLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *telLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *sfzhmLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *baoMingLabel;
  16. @property (retain, nonatomic) UILabel *tongGuoLabel;
  17. @property (retain, nonatomic) UILabel *stateLabel;
  18. @property (retain, nonatomic) UILabel *learnTimeLabel;
  19. @property(nonatomic,strong) UIButton *xxBtn;
  20. @property (weak, nonatomic) IBOutlet UIButton *telBtn;
  21. - (IBAction)clickToTel:(id)sender;
  22. @property(nonatomic,strong) NSDictionary *model;
  23. @property(nonatomic,assign) NSInteger studeState;
  24. @end