StockingCell.h 300 B

1234567891011121314151617
  1. //
  2. // StockingCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/17.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "StockingModel.h"
  10. @interface StockingCell : UITableViewCell
  11. /**
  12. model
  13. */
  14. @property (nonatomic, strong) StockingModel *model;
  15. @end