| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //
- // SalesAnalysisCell
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:商品畅滞销分析Cell
- #import <UIKit/UIKit.h>
- #import "SalesAnalysisModel.h"
- @interface SalesAnalysisCell : UITableViewCell
- /**
- 商品名称
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblName;
- /**
- 唯一编码
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblOnlyCode;
- /**
- 品牌
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblBrandName;
- /**
- 色号
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblColorNumber;
- /**
- 等级
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblGrade;
- /**
- 规格
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblSpecifications;
- /**
- 种类
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblKindName;
- /**
- 销售数量
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblSalesNumber;
- /**
- 销售次数
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblSalesTimes;
- /**
- 销售金额
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblSalesAmount;
- /**
- 排行
- */
- @property (weak, nonatomic) IBOutlet UILabel *lblRank;
- /**
- model
- */
- @property (nonatomic, strong) SalesAnalysisModel *model;
- /**
- 刷新页面
- */
- - (void)loadView;
- @end
|