// // TestinCell.h // smartRhino // // Created by taidi on 2019/12/12. // Copyright © 2019 tederen. All rights reserved. // #import "TDTableViewCell.h" NS_ASSUME_NONNULL_BEGIN @interface TestinCell : TDTableViewCell @property (weak, nonatomic) IBOutlet UIImageView *iconImageView; @property (weak, nonatomic) IBOutlet UILabel *nameLable; @property (weak, nonatomic) IBOutlet UILabel *handerResultLabel; @property (weak, nonatomic) IBOutlet UILabel *timeLabel; @property (weak, nonatomic) IBOutlet UILabel *applyLabel; @property (weak, nonatomic) IBOutlet UIButton *applyButton; @property (weak, nonatomic) IBOutlet UILabel *testLabel; @property (weak, nonatomic) IBOutlet UILabel *testInfolabel; @property (weak, nonatomic) IBOutlet UIButton *refuseButton; @property (weak, nonatomic) IBOutlet UIButton *aggreeButton; + (TestinCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TestinCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TestinCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END