// // MyWorkFlowFooterView.h // smartRhino // // Created by tederen on 2019/11/7. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol MyWorkFlowFooterViewDelegate - (void)didMyWorkFlowFooterViewBack:(NSInteger)index; @end @interface MyWorkFlowFooterViewCell : UIView @property (nonatomic, strong) UIImageView *imageVIew; @property (nonatomic, strong) UILabel *nameLab; @property (nonatomic, strong) UIButton *button; @end @interface MyWorkFlowFooterView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) MyWorkFlowFooterViewCell *agreeView; @property (nonatomic, strong) MyWorkFlowFooterViewCell *noAgreeView; @property (nonatomic, strong) MyWorkFlowFooterViewCell *disscusView; @property (nonatomic, strong) MyWorkFlowFooterViewCell *nextAggreView; @property (nonatomic, strong) MyWorkFlowFooterViewCell *waitView; @end NS_ASSUME_NONNULL_END