123456789101112131415161718192021222324252627282930 |
- //
- // EleOneCell.h
- // JSJPCoach
- //
- // Created by EchoShacolee on 2018/1/31.
- // Copyright © 2018年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface EleOneCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *stuName;
- @property (weak, nonatomic) IBOutlet UILabel *history;
- @property (weak, nonatomic) IBOutlet UILabel *type;
- @property (weak, nonatomic) IBOutlet UILabel *time;
- @property (weak, nonatomic) IBOutlet UILabel *allTime;
- @property (weak, nonatomic) IBOutlet UILabel *status1;
- @property (weak, nonatomic) IBOutlet UILabel *status2;
- @property (weak, nonatomic) IBOutlet UILabel *status3;
- @property (weak, nonatomic) IBOutlet UILabel *status4;
- @property (weak, nonatomic) IBOutlet UILabel *checkMan;
- @property (weak, nonatomic) IBOutlet UILabel *reason;
- @property (weak, nonatomic) IBOutlet UILabel *checkTime;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *statusTop;
- @property(nonatomic,assign)NSInteger kemu;
- @property(nonatomic,strong)NSDictionary *dataDic;
- @end
|