// // ClsTheoryListCell.h // JSJPCoach // // Created by EchoShacolee on 2017/7/19. // Copyright © 2017年 Danson. All rights reserved. // #import @interface ClsTheoryListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *issueNum; @property (weak, nonatomic) IBOutlet UILabel *kemu; @property (weak, nonatomic) IBOutlet UILabel *coach; @property (weak, nonatomic) IBOutlet UILabel *date; @property (weak, nonatomic) IBOutlet UILabel *status; @property(nonatomic,strong)NSDictionary *dic; +(instancetype)cellForTableView:(UITableView *)tableView; @end