// // StudentTableCell.h // jiaPeiC // // Created by apple on 16/3/7. // Copyright © 2016年 JCZ. All rights reserved. // #import @interface StudentTableCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *headImg; @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet UILabel *sexLabel; @property (weak, nonatomic) IBOutlet UILabel *telLabel; @property (weak, nonatomic) IBOutlet UILabel *sfzhmLabel; @property (weak, nonatomic) IBOutlet UILabel *baoMingLabel; @property (retain, nonatomic) UILabel *tongGuoLabel; @property (retain, nonatomic) UILabel *stateLabel; @property (retain, nonatomic) UILabel *learnTimeLabel; @property(nonatomic,strong) UIButton *xxBtn; @property (weak, nonatomic) IBOutlet UIButton *telBtn; - (IBAction)clickToTel:(id)sender; @property(nonatomic,strong) NSDictionary *model; @property(nonatomic,assign) NSInteger studeState; @end