AppointmentCell.h 719 B

12345678910111213141516171819202122232425262728293031
  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 (weak, nonatomic) IBOutlet UILabel *zkzhLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *sfzhLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *kscsLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *kskmLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *ksccLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *ksrqLabel;
  18. @property (weak, nonatomic) IBOutlet UILabel *lshLabel;
  19. @end