| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // StockingModel.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/17.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface StockingModel : NSObject
- /**
- id
- */
- @property(nonatomic,strong) NSString *stockingID;
- /**
- 库存id
- */
- @property(nonatomic,strong) NSString *inventoryID;
- /**
- id
- */
- @property(nonatomic,strong) NSString *stockingNo;
- /**
- code
- */
- @property (nonatomic, strong) NSString *code;
- /**
- code
- */
- @property (nonatomic, strong) NSString *codeID;
- /**
- onlyCode
- */
- @property (nonatomic, strong) NSString *onlyCode;
- /**
- 库房
- */
- @property (nonatomic, strong) NSString *warehouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) NSString *specification;
- /**
- 盘点人
- */
- @property (nonatomic, strong) NSString *createUser;
- /**
- 等级
- */
- @property (nonatomic, strong) NSString *gradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) NSString *colorNumber;
- /**
- 仓位
- */
- @property (nonatomic, strong) NSString *positionNumber;
- /**
- 盘点时间
- */
- @property (nonatomic, strong) NSString *createTime;
- /**
- 库存数量
- */
- @property (nonatomic, strong) NSString *quantity;
- /**
- 可售量数量
- */
- @property (nonatomic, strong) NSString *balanceQuantity;
- @end
|