AppointmentCell.h 770 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // AppointmentCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/5/4.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AppointmentCell : UITableViewCell
  10. @property (nonatomic, retain) NSDictionary *dataDic;
  11. @property (nonatomic, retain) UILabel *timeLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *zkzhLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *sfzhLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *kscsLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *kskmLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *ksccLabel;
  18. @property (weak, nonatomic) IBOutlet UILabel *ksrqLabel;
  19. @property (weak, nonatomic) IBOutlet UILabel *lshLabel;
  20. @end