123456789101112131415161718192021 |
- //
- // PeriodStuCell.h
- // JSJPCoach
- //
- // Created by apple on 2017/3/24.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PeriodStuCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *headImgView;
- @property (nonatomic, strong) UILabel *nameLabel;
- @property (nonatomic, strong) UILabel *telLabel;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @property (nonatomic, copy) NSString *imgPath;
- @end
|