| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // SalesAnalysisSearchModel
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:商品畅滞销分析抽屉Model
- #import <Foundation/Foundation.h>
- #define SALESANALYSIS_SEARCH_RANGE_MODEL @"SALESANALYSIS_SEARCH_RANGE_MODEL"
- @interface SalesAnalysisSearchModel : NSObject
- /**
- 商品名称
- */
- @property (nonatomic, strong) NSString *strCommodityName;
- /**
- 唯一编码
- */
- @property (nonatomic, strong) NSString *strOnlyCode;
- /**
- 商品品牌ID
- */
- @property (nonatomic, strong) NSString *strCommodityBrandID;
- /**
- 商品品牌
- */
- @property (nonatomic, strong) NSString *strCommodityBrand;
- /**
- 商品种类
- */
- @property (nonatomic, strong) NSString *strCommodityCategory;
- /**
- 区分色号
- */
- @property (nonatomic, strong) NSString *strAreaColor;
- /**
- 区分等级
- */
- @property (nonatomic, strong) NSString *strGrade;
- /**
- 区分规格
- */
- @property (nonatomic, strong) NSString *strSpecification;
- /**
- 区分渠道
- */
- @property (nonatomic, strong) NSString *strChannel;
- /**
- 开始时间
- */
- @property (nonatomic, strong) NSString *strStartDate;
- /**
- 结束时间
- */
- @property (nonatomic, strong) NSString *strEndDate;
- /**
- 排序方式
- */
- @property (nonatomic, strong) NSString *strType;
- @end
|