ClsTheoryListCell.h 596 B

1234567891011121314151617181920212223
  1. //
  2. // ClsTheoryListCell.h
  3. // JSJPCoach
  4. //
  5. // Created by EchoShacolee on 2017/7/19.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ClsTheoryListCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *issueNum;
  11. @property (weak, nonatomic) IBOutlet UILabel *kemu;
  12. @property (weak, nonatomic) IBOutlet UILabel *coach;
  13. @property (weak, nonatomic) IBOutlet UILabel *date;
  14. @property (weak, nonatomic) IBOutlet UILabel *status;
  15. @property(nonatomic,strong)NSDictionary *dic;
  16. +(instancetype)cellForTableView:(UITableView *)tableView;
  17. @end