| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- //
- // InventoryDetailViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/16.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "RequestResultModel.h"
- #import "InventoryDetailModel.h"
- #import "XHImageViewer.h"
- @interface InventoryDetailViewController : BaseViewController<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>
- /**
- code
- */
- @property (nonatomic, strong) NSString *code;
- /**
- onlyCode
- */
- @property (nonatomic, strong) NSString *onlyCode;
- /**
- 商品名称
- */
- @property (nonatomic, strong) NSString *goodName;
- /**
- 库房
- */
- @property (nonatomic, strong) NSString *wareHouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) NSString *specification;
- /**
- 品牌
- */
- @property (nonatomic, strong) NSString *brandName;
- /**
- 等级
- */
- @property (nonatomic, strong) NSString *gradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) NSString *colorNumber;
- /**
- 结存量
- */
- @property (nonatomic, strong) NSString *inventoryQuantity;
- /**
- 可售量
- */
- @property (nonatomic, strong) NSString *canSaleQuantity;
- /**
- 仓位
- */
- @property (nonatomic, strong) NSString *positionNumber;
- /**
- 标价
- */
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, assign) BOOL boxPieceFlag;
- @property (nonatomic, strong) NSString *package;
- @property (nonatomic, strong) NSString *box;
- @property (nonatomic, strong) NSString *piece;
- @property (nonatomic, strong) NSString *varietyName;
- @property (nonatomic, strong) NSString *inventoryId;
- @property(nonatomic,strong) InventoryDetailModel *detailModel;
- @property (strong, nonatomic) UICollectionView *collectionView;
- /**
- 图片数组
- */
- @property (strong, nonatomic) NSMutableArray *detailImgList;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @end
|