AveragePriceMonitorModel.h 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // AveragePriceMonitorModel.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/8.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:均价监控模型
  9. #import <Foundation/Foundation.h>
  10. @interface AveragePriceMonitorModel : NSObject
  11. /**
  12. 业务部门
  13. */
  14. @property(nonatomic,strong) NSString *departmentName;
  15. /**
  16. 产品种类
  17. */
  18. @property(nonatomic,strong) NSString *kindName;
  19. /**
  20. 毛利率
  21. */
  22. @property(nonatomic,strong) NSString *profit;
  23. /**
  24. 订单数量
  25. */
  26. @property(nonatomic,strong) NSString *orderQuantity;
  27. /**
  28. 订单总额
  29. */
  30. @property(nonatomic,strong) NSString *orderAmount;
  31. /**
  32. 订单均价
  33. */
  34. @property(nonatomic,strong) NSString *orderAveragePrice;
  35. /**
  36. 成本总额
  37. */
  38. @property(nonatomic,strong) NSString *costAmount;
  39. /**
  40. 成本均价
  41. */
  42. @property(nonatomic,strong) NSString *costAveragePrice;
  43. /**
  44. 种类id
  45. */
  46. @property(nonatomic,assign) NSInteger kindId;
  47. @end