12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // StudentTableCell.h
- // jiaPeiC
- //
- // Created by apple on 16/3/7.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|