// // MyApprovalBCell.h // smartRhino // // Created by tederen on 2019/11/1. // Copyright © 2019 tederen. All rights reserved. // #import "TDTableViewCell.h" NS_ASSUME_NONNULL_BEGIN @class Item; @class MyApprovalModel; @interface MyApprovalBCell : TDTableViewCell @property (weak, nonatomic) IBOutlet UIView *nameBackView; @property (weak, nonatomic) IBOutlet UILabel *titleNameLab; @property (weak, nonatomic) IBOutlet UILabel *timeLab; @property (weak, nonatomic) IBOutlet UILabel *firstLab; @property (weak, nonatomic) IBOutlet UILabel *secondLab; @property (weak, nonatomic) IBOutlet UILabel *thirdLab; @property (weak, nonatomic) IBOutlet UILabel *approvalStatusLab; @property (weak, nonatomic) IBOutlet UILabel *nameLab; @property (weak, nonatomic) IBOutlet UILabel *falgLab; @property (weak, nonatomic) IBOutlet UIImageView *iconImage; - (void)loadApprovalData:(MyApprovalModel *)model; - (void)loadSearchData:(Item *)model; - (void)loadDictionArray:(HomeWaitWorkModel*)model; @end NS_ASSUME_NONNULL_END