| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // WorkFlowInfoModel.h
- // IBOSS
- //
- // Created by iHope on 14-7-9.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ShopCartItemModel : NSObject
-
- @property(strong) NSString * cartId;//购物车Id
- @property(strong) NSString * inventoryId;//库存Id
- @property(strong) NSString * salesQuantity;//销售数量
- @property(strong) NSString * salesPrice;//售价
- @property(strong) NSString * remarks;//备注
- @property(strong) NSString * specification;//规格
- @property(strong,nonatomic) NSString * acreage;//面积
- @property(strong) NSString * volume;//体积
- @property(strong) NSString * code;//编码
- @property(strong) NSString * onlyCode;//唯一编码
- @property(strong) NSString * codeId;//编码Id
- @property(strong) NSString * gradeId;//等级Id
- @property(strong) NSString * colorNumber;//色号
- @property(strong) NSString * warehouseId;//库区Id
- @property(strong) NSString * positionNumber;//仓库位置
- @property(strong) NSString * warehouseName;//库区
- @property(strong) NSString * balanceQuantity;//可售量
- @property(strong) NSString * brandId;//品牌Id
- @property(strong) NSString * brandName;//品牌名称
- @property(strong) NSString * kindId;//种类Id
- @property(strong) NSString * kindName;//种类名称
- @property(strong) NSString * varietyId;//品种Id
- @property(strong) NSString * varietyName;//品种名称
- @property(strong) NSString * seriesId;//系列Id
- @property(strong) NSString * seriesName;//系列名称
- @property(strong) NSString * unitId;//单位Id
- @property(strong) NSString * unitName;//单位名称
- @property(strong) NSString * gradeName;//等级名称
- @property (assign,nonatomic)NSInteger circulateType;//流通方式
- @property(assign,nonatomic)NSInteger decimalPlaces;//小数点位置
- @property(strong) NSString * package;//包装
- @property(strong) NSString * weight;//重量
- @property(strong) NSString * markedPrice;//标价
- @property(nonatomic) BOOL isChecked;//选中标识
- -(void)parseDic:(NSDictionary *)dic;//解析字典
- @end
|