// // SendInfoGroupCell.h // smartRhino // // Created by tederen on 2019/11/4. // Copyright © 2019 tederen. All rights reserved. // #import "TDTableViewCell.h" @class DepartmentModel; NS_ASSUME_NONNULL_BEGIN @class SendInfoGroupModel; //@protocol SendInfoGroupCellDelegate //@optional //- (void)selectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index; //- (void)noSelectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index; // //- (void)selectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index; //- (void)noSelectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index; //@end /// 带图片的 @interface SendInfoGroupCell : TDTableViewCell @property (weak, nonatomic) IBOutlet TDButton *selectbuton; @property (weak, nonatomic) IBOutlet UIImageView *iconImageView; @property (weak, nonatomic) IBOutlet UILabel *nameLab; @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView; - (void)loadDataModel:(DepartmentModel *)model indexWith:(NSIndexPath *)index; - (void)loadDataDepartUserModel:(SelectModel *)model indexWith:(NSIndexPath *)index; @end NS_ASSUME_NONNULL_END