12345678910111213141516171819202122232425262728293031 |
- //
- // AppointmentCell.h
- // jiaPei
- //
- // Created by apple on 16/5/4.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AppointmentCell : UITableViewCell
- @property (nonatomic, retain) NSDictionary *dataDic;
- @property (weak, nonatomic) IBOutlet UILabel *zkzhLabel;
- @property (weak, nonatomic) IBOutlet UILabel *sfzhLabel;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *kscsLabel;
- @property (weak, nonatomic) IBOutlet UILabel *kskmLabel;
- @property (weak, nonatomic) IBOutlet UILabel *ksccLabel;
- @property (weak, nonatomic) IBOutlet UILabel *ksrqLabel;
- @property (weak, nonatomic) IBOutlet UILabel *lshLabel;
- @end
|