IntermediateCustomerCell.h 790 B

12345678910111213141516171819202122
  1. //
  2. // IntermediateCustomerCellTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/2/1.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderListDelegate.h"
  10. #import "IntermediateCustomerFrame.h"
  11. @interface IntermediateCustomerCell : UITableViewCell
  12. @property(nonatomic,strong)UIButton *btnCheck;
  13. @property(nonatomic,strong)UILabel *lblIntermediateCustomer;
  14. @property(nonatomic,assign) NSInteger cellIndex;
  15. @property(nonatomic,assign) Boolean isSelect;
  16. @property(weak) id<OrderListDelegate> delegate;
  17. @property(nonatomic,strong) IntermediateCustomerModel *intermediateCustomerModel;
  18. - (void) setCheckBackground: (BOOL) checked;
  19. -(void)parseIntermediateCustomerInfo:(IntermediateCustomerFrame *)intermediateCustomerFrame;
  20. @end