| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // SalesAnalysisSearchCell
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:商品畅滞销分析抽屉Cell
- #import "SideSlipBaseTableViewCell.h"
- @interface SalesAnalysisSearchCell : SideSlipBaseTableViewCell
- /**
- 销售数量
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnSalesVolumes;
- /**
- 销售金额
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnSalesAmount;
- /**
- 销售次数
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnSalesTimes;
- /**
- 商品名称
- */
- @property (weak, nonatomic) IBOutlet UITextField *fieldCommodityName;
- /**
- 唯一编码
- */
- @property (weak, nonatomic) IBOutlet UITextField *fieldOnlyCode;
- /**
- 商品品牌
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnCommodityBrand;
- /**
- 区分色号
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnAreaColor;
- /**
- 区分等级
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnGrade;
- /**
- 区分规格
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnSpecification;
- /**
- 区分渠道
- */
- @property (weak, nonatomic) IBOutlet UILabel *btnChannel;
- /**
- 开始时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
- @end
|