| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // AveragePriceMonitorModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/9/8.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:均价监控模型
- #import <Foundation/Foundation.h>
- @interface AveragePriceMonitorModel : NSObject
- /**
- 业务部门
- */
- @property(nonatomic,strong) NSString *departmentName;
- /**
- 产品种类
- */
- @property(nonatomic,strong) NSString *kindName;
- /**
- 毛利率
- */
- @property(nonatomic,strong) NSString *profit;
- /**
- 订单数量
- */
- @property(nonatomic,strong) NSString *orderQuantity;
- /**
- 订单总额
- */
- @property(nonatomic,strong) NSString *orderAmount;
- /**
- 订单均价
- */
- @property(nonatomic,strong) NSString *orderAveragePrice;
- /**
- 成本总额
- */
- @property(nonatomic,strong) NSString *costAmount;
- /**
- 成本均价
- */
- @property(nonatomic,strong) NSString *costAveragePrice;
- /**
- 种类id
- */
- @property(nonatomic,assign) NSInteger kindId;
- @end
|