| 12345678910111213141516171819202122 |
- //
- // IntermediateCustomerCellTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/1.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderListDelegate.h"
- #import "IntermediateCustomerFrame.h"
- @interface IntermediateCustomerCell : UITableViewCell
- @property(nonatomic,strong)UIButton *btnCheck;
- @property(nonatomic,strong)UILabel *lblIntermediateCustomer;
- @property(nonatomic,assign) NSInteger cellIndex;
- @property(nonatomic,assign) Boolean isSelect;
- @property(weak) id<OrderListDelegate> delegate;
- @property(nonatomic,strong) IntermediateCustomerModel *intermediateCustomerModel;
- - (void) setCheckBackground: (BOOL) checked;
- -(void)parseIntermediateCustomerInfo:(IntermediateCustomerFrame *)intermediateCustomerFrame;
- @end
|