| 12345678910111213141516171819 |
- //
- // StockingGoodsCell.h
- // IBOSS
- //
- // Created by apple on 2017/5/17.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:盘点商品单元格
- //
- #import <UIKit/UIKit.h>
- #import "StockingModel.h"
- @interface StockingGoodsCell : UITableViewCell
- /**
- model
- */
- @property (nonatomic, strong) StockingModel *model;
- @end
|