| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- //
- // AveragePriceMonitorModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/9/8.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:均价监控frame
- #import <Foundation/Foundation.h>
- #import "AveragePriceMonitorModel.h"
- @interface AveragePriceMonitorFrame: NSObject
- /**
- 部门标题frame
- */
- @property (nonatomic, assign, readonly)CGRect departmentTitleF;
- /**
- 部门frame
- */
- @property (nonatomic, assign, readonly)CGRect departmentF;
- /**
- 种类标题frame
- */
- @property (nonatomic, assign, readonly)CGRect kindTitleF;
- /**
- 种类frame
- */
- @property (nonatomic, assign, readonly)CGRect kindF;
- /**
- 顶部分隔线frame
- */
- @property (nonatomic, assign, readonly)CGRect topSeparatorF;
- /**
- 毛利率标题frame
- */
- @property (nonatomic, assign, readonly)CGRect profitTitleF;
- /**
- 毛利率frame
- */
- @property (nonatomic, assign, readonly)CGRect profitF;
- /**
- 订单数量标题frame
- */
- @property (nonatomic, assign, readonly)CGRect orderQuantityTitleF;
- /**
- 订单数量frame
- */
- @property (nonatomic, assign, readonly)CGRect orderQuantityF;
- /**
- 订单总额标题frame
- */
- @property (nonatomic, assign, readonly)CGRect orderAmountTitleF;
- /**
- 订单总额frame
- */
- @property (nonatomic, assign, readonly)CGRect orderAmountF;
- /**
- 订单均价标题frame
- */
- @property (nonatomic, assign, readonly)CGRect orderAveragePriceTitleF;
- /**
- 订单均价frame
- */
- @property (nonatomic, assign, readonly)CGRect orderAveragePriceF;
- /**
- 成本总额标题frame
- */
- @property (nonatomic, assign, readonly)CGRect costAmountTitleF;
- /**
- 成本总额frame
- */
- @property (nonatomic, assign, readonly)CGRect costAmountF;
- /**
- 成本均价标题frame
- */
- @property (nonatomic, assign, readonly)CGRect costAveragePriceTitleF;
- /**
- 成本均价frame
- */
- @property (nonatomic, assign, readonly)CGRect costAveragePriceF;
- /**
- 底部分隔线frame
- */
- @property (nonatomic, assign, readonly)CGRect bottomSeparatorF;
- /**
- 均价监控模型
- */
- @property (strong,nonatomic)AveragePriceMonitorModel *averagePriceModel;
- /**
- 单元格高度
- */
- @property(nonatomic,assign) CGFloat cellHeight;
- /**
- 设置均价监控frame
- @param monitorModel <#monitorModel description#>
- */
- -(void)setAveragePriceMonitorFrame:(AveragePriceMonitorModel*)monitorModel;
- @end
|