SalesAnalysisSearchModel.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //
  2. // SalesAnalysisSearchModel
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:商品畅滞销分析抽屉Model
  9. #import <Foundation/Foundation.h>
  10. #define SALESANALYSIS_SEARCH_RANGE_MODEL @"SALESANALYSIS_SEARCH_RANGE_MODEL"
  11. @interface SalesAnalysisSearchModel : NSObject
  12. /**
  13. 商品名称
  14. */
  15. @property (nonatomic, strong) NSString *strCommodityName;
  16. /**
  17. 唯一编码
  18. */
  19. @property (nonatomic, strong) NSString *strOnlyCode;
  20. /**
  21. 商品品牌ID
  22. */
  23. @property (nonatomic, strong) NSString *strCommodityBrandID;
  24. /**
  25. 商品品牌
  26. */
  27. @property (nonatomic, strong) NSString *strCommodityBrand;
  28. /**
  29. 商品种类
  30. */
  31. @property (nonatomic, strong) NSString *strCommodityCategory;
  32. /**
  33. 区分色号
  34. */
  35. @property (nonatomic, strong) NSString *strAreaColor;
  36. /**
  37. 区分等级
  38. */
  39. @property (nonatomic, strong) NSString *strGrade;
  40. /**
  41. 区分规格
  42. */
  43. @property (nonatomic, strong) NSString *strSpecification;
  44. /**
  45. 区分渠道
  46. */
  47. @property (nonatomic, strong) NSString *strChannel;
  48. /**
  49. 开始时间
  50. */
  51. @property (nonatomic, strong) NSString *strStartDate;
  52. /**
  53. 结束时间
  54. */
  55. @property (nonatomic, strong) NSString *strEndDate;
  56. /**
  57. 排序方式
  58. */
  59. @property (nonatomic, strong) NSString *strType;
  60. @end