StockingCell.h 362 B

1234567891011121314151617181920
  1. //
  2. // StockingCell.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 StockingCell : UITableViewCell
  13. /**
  14. model
  15. */
  16. @property (nonatomic, strong) StockingModel *model;
  17. @end