| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //
- // InventoryCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/16.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "InventoryModel.h"
- @interface InventoryCell : UITableViewCell
- /**
- id
- */
- @property(nonatomic,assign) NSString *inventoryId;
- /**
- model
- */
- @property (nonatomic, strong) InventoryModel *model;
- /**
- code
- */
- @property (nonatomic, strong) UILabel *code;
- /**
- onlyCode
- */
- @property (nonatomic, strong) UILabel *onlyCode;
- /**
- 商品名称
- */
- @property (nonatomic, strong) UILabel *goodName;
- /**
-
- 库房
- */
- @property (nonatomic, strong) UILabel *wareHouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) UILabel *specification;
- /**
- 品牌
- */
- @property (nonatomic, strong) UILabel *brandName;
- /**
- 等级
- */
- @property (nonatomic, strong) UILabel *gradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) UILabel *colorNumber;
- /**
- 结存量
- */
- @property (nonatomic, strong) UILabel *inventoryQuantity;
- /**
- 可售量
- */
- @property (nonatomic, strong) UILabel *canSaleQuantity;
- /**
- 仓位
- */
- @property (nonatomic, strong) UILabel *positionNumber;
- /**
- 标价
- */
- @property (nonatomic, strong) UILabel *price;
- @end
|