AveragePriceMonitorItemTableViewCell.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // AveragePriceMonitorItemTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/8.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:均价监控table view cell
  9. #import <UIKit/UIKit.h>
  10. #import "AveragePriceMonitorFrame.h"
  11. #import "AveragePriceMonitorModel.h"
  12. @interface AveragePriceMonitorItemTableViewCell : UITableViewCell
  13. /**
  14. 业务部门控件
  15. */
  16. @property (strong, nonatomic) UILabel *lblBusinessDepartment;
  17. /**
  18. 产品种类控件
  19. */
  20. @property (strong, nonatomic) UILabel *lblGoodsKind;
  21. /**
  22. 毛利率控件
  23. */
  24. @property (strong, nonatomic) UILabel *lblProfit;
  25. /**
  26. 订单数量控件
  27. */
  28. @property (strong, nonatomic) UILabel *lblOrderQuantity;
  29. /**
  30. 订单总额控件
  31. */
  32. @property (strong, nonatomic) UILabel *lblOrderAmount;
  33. /**
  34. 订单均价控件
  35. */
  36. @property (strong, nonatomic) UILabel *lblOrderAveragePrice;
  37. /**
  38. 成本均价控件
  39. */
  40. @property (strong, nonatomic) UILabel *lblCostAveragePrice;
  41. /**
  42. 成本总额控件
  43. */
  44. @property (strong, nonatomic) UILabel *lblCostAmount;
  45. /**
  46. 均价监控模型
  47. */
  48. @property (strong,nonatomic) AveragePriceMonitorModel *monitorModel;
  49. /**
  50. 设置均价监控cell数据
  51. @param frame <#frame description#>
  52. @param invoiceType <#invoiceType description#>
  53. */
  54. -(void)setAveragePriceMonitorCell:(AveragePriceMonitorFrame*)frame invoiceType:(NSString*)invoiceType;
  55. @end