StockingGoodsCell.h 377 B

12345678910111213141516171819
  1. //
  2. // StockingGoodsCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/17.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点商品单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "StockingModel.h"
  12. @interface StockingGoodsCell : UITableViewCell
  13. /**
  14. model
  15. */
  16. @property (nonatomic, strong) StockingModel *model;
  17. @end