| 12345678910111213141516171819202122232425 |
- //
- // InventoryAnalysisDataListCell.h
- // IBOSS
- //
- // Created by ssl on 2018/1/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesPaymentRankFrame.h"
- @interface InventoryAnalysisDataListCell : UITableViewCell
- /**
- 初始化控件
- */
- -(void)initUI;
- /**
- 刷新数据
- @param model <#model description#>
- */
- -(void)loadData:(SalesPaymentRankModel *) model;
- @end
|