InventoryAnalysisDataListCell.h 418 B

12345678910111213141516171819202122232425
  1. //
  2. // InventoryAnalysisDataListCell.h
  3. // IBOSS
  4. //
  5. // Created by ssl on 2018/1/4.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesPaymentRankFrame.h"
  10. @interface InventoryAnalysisDataListCell : UITableViewCell
  11. /**
  12. 初始化控件
  13. */
  14. -(void)initUI;
  15. /**
  16. 刷新数据
  17. @param model <#model description#>
  18. */
  19. -(void)loadData:(SalesPaymentRankModel *) model;
  20. @end