SalesAnalysisSearchCell.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // SalesAnalysisSearchCell
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:商品畅滞销分析抽屉Cell
  9. #import "SideSlipBaseTableViewCell.h"
  10. @interface SalesAnalysisSearchCell : SideSlipBaseTableViewCell
  11. /**
  12. 销售数量
  13. */
  14. @property (weak, nonatomic) IBOutlet UILabel *btnSalesVolumes;
  15. /**
  16. 销售金额
  17. */
  18. @property (weak, nonatomic) IBOutlet UILabel *btnSalesAmount;
  19. /**
  20. 销售次数
  21. */
  22. @property (weak, nonatomic) IBOutlet UILabel *btnSalesTimes;
  23. /**
  24. 商品名称
  25. */
  26. @property (weak, nonatomic) IBOutlet UITextField *fieldCommodityName;
  27. /**
  28. 唯一编码
  29. */
  30. @property (weak, nonatomic) IBOutlet UITextField *fieldOnlyCode;
  31. /**
  32. 商品品牌
  33. */
  34. @property (weak, nonatomic) IBOutlet UIButton *btnCommodityBrand;
  35. /**
  36. 区分色号
  37. */
  38. @property (weak, nonatomic) IBOutlet UILabel *btnAreaColor;
  39. /**
  40. 区分等级
  41. */
  42. @property (weak, nonatomic) IBOutlet UILabel *btnGrade;
  43. /**
  44. 区分规格
  45. */
  46. @property (weak, nonatomic) IBOutlet UILabel *btnSpecification;
  47. /**
  48. 区分渠道
  49. */
  50. @property (weak, nonatomic) IBOutlet UILabel *btnChannel;
  51. /**
  52. 开始时间
  53. */
  54. @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
  55. /**
  56. 结束时间
  57. */
  58. @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
  59. @end