ShopCartItemModel.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // WorkFlowInfoModel.h
  3. // IBOSS
  4. //
  5. // Created by iHope on 14-7-9.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ShopCartItemModel : NSObject
  10. @property(strong) NSString * cartId;//购物车Id
  11. @property(strong) NSString * inventoryId;//库存Id
  12. @property(strong) NSString * salesQuantity;//销售数量
  13. @property(strong) NSString * salesPrice;//售价
  14. @property(strong) NSString * remarks;//备注
  15. @property(strong) NSString * specification;//规格
  16. @property(strong,nonatomic) NSString * acreage;//面积
  17. @property(strong) NSString * volume;//体积
  18. @property(strong) NSString * code;//编码
  19. @property(strong) NSString * onlyCode;//唯一编码
  20. @property(strong) NSString * codeId;//编码Id
  21. @property(strong) NSString * gradeId;//等级Id
  22. @property(strong) NSString * colorNumber;//色号
  23. @property(strong) NSString * warehouseId;//库区Id
  24. @property(strong) NSString * positionNumber;//仓库位置
  25. @property(strong) NSString * warehouseName;//库区
  26. @property(strong) NSString * balanceQuantity;//可售量
  27. @property(strong) NSString * brandId;//品牌Id
  28. @property(strong) NSString * brandName;//品牌名称
  29. @property(strong) NSString * kindId;//种类Id
  30. @property(strong) NSString * kindName;//种类名称
  31. @property(strong) NSString * varietyId;//品种Id
  32. @property(strong) NSString * varietyName;//品种名称
  33. @property(strong) NSString * seriesId;//系列Id
  34. @property(strong) NSString * seriesName;//系列名称
  35. @property(strong) NSString * unitId;//单位Id
  36. @property(strong) NSString * unitName;//单位名称
  37. @property(strong) NSString * gradeName;//等级名称
  38. @property (assign,nonatomic)NSInteger circulateType;//流通方式
  39. @property(assign,nonatomic)NSInteger decimalPlaces;//小数点位置
  40. @property(strong) NSString * package;//包装
  41. @property(strong) NSString * weight;//重量
  42. @property(strong) NSString * markedPrice;//标价
  43. @property(nonatomic) BOOL isChecked;//选中标识
  44. -(void)parseDic:(NSDictionary *)dic;//解析字典
  45. @end