1234567891011121314151617181920 |
- //
- // XueShiCheckCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/13.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface XueShiCheckCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UILabel *trainTimeLab;
- @property (weak, nonatomic) IBOutlet UILabel *schoolLab;
- @property (weak, nonatomic) IBOutlet UILabel *kemuLab;
- @property (weak, nonatomic) IBOutlet UILabel *statusLab;
- -(void)updataWithDic:(NSDictionary *)dic;
- @end
|