// // AveragePriceMonitorItemTableViewCell.h // IBOSS // // Created by guan hong hou on 2017/9/8. // Copyright © 2017年 elongtian. All rights reserved. // // 功能描述:均价监控table view cell #import #import "AveragePriceMonitorFrame.h" #import "AveragePriceMonitorModel.h" @interface AveragePriceMonitorItemTableViewCell : UITableViewCell /** 业务部门控件 */ @property (strong, nonatomic) UILabel *lblBusinessDepartment; /** 产品种类控件 */ @property (strong, nonatomic) UILabel *lblGoodsKind; /** 毛利率控件 */ @property (strong, nonatomic) UILabel *lblProfit; /** 订单数量控件 */ @property (strong, nonatomic) UILabel *lblOrderQuantity; /** 订单总额控件 */ @property (strong, nonatomic) UILabel *lblOrderAmount; /** 订单均价控件 */ @property (strong, nonatomic) UILabel *lblOrderAveragePrice; /** 成本均价控件 */ @property (strong, nonatomic) UILabel *lblCostAveragePrice; /** 成本总额控件 */ @property (strong, nonatomic) UILabel *lblCostAmount; /** 均价监控模型 */ @property (strong,nonatomic) AveragePriceMonitorModel *monitorModel; /** 设置均价监控cell数据 @param frame <#frame description#> @param invoiceType <#invoiceType description#> */ -(void)setAveragePriceMonitorCell:(AveragePriceMonitorFrame*)frame invoiceType:(NSString*)invoiceType; @end