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