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