GoodsSearchItemModel.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // GoodsSearchItemModel.h
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-7-24.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface GoodsSearchItemModel : NSObject<NSCopying>
  10. @property(strong) NSString * code;//产品编码
  11. @property(strong) NSString *onlyCode;//唯一编码
  12. @property(strong) NSString *brandName;//品牌名称
  13. @property(strong) NSString *gradeName;//等级名称
  14. @property(strong) NSString *specification;//规格
  15. @property(strong) NSString *colorNumber;//色号
  16. @property(strong) NSString *warehouseName;//仓库
  17. @property(strong) NSString *positionNumber;//仓库位置
  18. @property(strong) NSString *balanceQuantity;//可售量
  19. @property(strong) NSString *inventoryQuantity;//结存量
  20. @property(strong) NSString *inventoryID;//单号
  21. @property(strong) NSString *salesQuantity;//销售量
  22. @property(strong) NSString *salesPrice;//商品售价
  23. @property(strong) NSString *remarks;//备注
  24. @property(strong) NSString *markedPrice;//商品标价
  25. @property(strong) NSString *photo;//图片字节流
  26. @property(nonatomic) BOOL isChecked;//选中标识
  27. @property (assign,nonatomic)NSInteger circulateType;//流通方式
  28. @property(assign,nonatomic) double acreage;//面积
  29. @property(assign,nonatomic)NSInteger decimalPlaces;//小数点位置
  30. -(void)parseDic:(NSDictionary *)dic;//解析字典
  31. @end