| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- //
- // InstallReceiptedListFrame.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/13.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- // 功能描述:安装已回执frame
- #import <Foundation/Foundation.h>
- #import "InstallReceiptListModel.h"
- @interface InstallReceiptedListFrame : NSObject
- /**
- 回执单号标题frame
- */
- @property (nonatomic, assign)CGRect lblReceiptNoF;
- @property (nonatomic, assign)CGRect btnCancelReceiptF;
- /**
- 分隔线frame
- */
- @property (nonatomic, assign)CGRect separatorF;
- /**
- 安排单号标题frame
- */
- @property (nonatomic, assign)CGRect lblArrangementNoF;
- /**
- 安装单号标题frame
- */
- @property (nonatomic, assign)CGRect lblInstallationNoF;
- /**
- 客户名称标题frame
- */
- @property (nonatomic, assign)CGRect lblCustomerNameF;
- /**
- 回执日期标题frame
- */
- @property (nonatomic,assign) CGRect lblReceiptDateF;
- /**
- 回执状态标题frame
- */
- @property (nonatomic,assign) CGRect lblReceiptStatusF;
- /**
- 回执单号frame
- */
- @property (nonatomic, assign)CGRect receiptNoF;
- /**
- 安排单号frame
- */
- @property (nonatomic, assign)CGRect arrangementNoF;
- /**
- 安装单号frame
- */
- @property (nonatomic, assign)CGRect installationNoF;
- /**
- 客户名称frame
- */
- @property (nonatomic, assign)CGRect customerNameF;
- /**
- 回执日期frame
- */
- @property (nonatomic, assign)CGRect receiptDateF;
- /**
- 回执状态frame
- */
- @property (nonatomic, assign)CGRect receiptStatusF;
- @property (nonatomic, assign)CGRect lblCustomerAddressF;
- @property (nonatomic, assign)CGRect customerAddressF;
- @property (nonatomic, assign)CGRect lblCustomerTelephoneF;
- @property (nonatomic, assign)CGRect customerTelephoneF;
- /**
- 安装已回执模型
- */
- @property (strong,nonatomic) InstallReceiptListModel *installationReceiptListModel;
- /**
- 设置安装已回执frame
- @param installationInfoModel <#installationInfoModel description#>
- */
- - (void)setInstallationListFrame:(InstallReceiptListModel *)installationInfoModel;
- /**
- 单元格高度
- */
- @property (nonatomic, assign)NSUInteger cellHeight;
- @end
|