// // UnInstallationInfoCellTableViewCell.h // IBOSS // // Created by guan hong hou on 16/4/15. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved. // // 功能描述:安装未回执单元格类 #import #import "UnInstallationInfoFrame.h" #import "DialTelephoneDelegate.h" @interface UnInstallationInfoTableViewCell : UITableViewCell /** 安装单号 */ @property (strong,nonatomic) UILabel *installationNo; /** 客户名称 */ @property (strong,nonatomic) UILabel *customerName; /** 电话 */ @property (strong,nonatomic) UILabel *telephone; /** 客户地址 */ @property (strong,nonatomic) UILabel *customerAddress; /** 安排单号 */ @property (strong,nonatomic) UILabel *arrangementNo; /** 安装日期 */ @property (strong,nonatomic) UILabel *installationDate; @property(nonatomic,strong) NSString *telephoneNumber; @property(nonatomic,strong)UIButton *btnDialTelephone; @property (strong,nonatomic) UILabel *lblDepartment; @property (strong,nonatomic) UILabel *lblStaff; @property(nonatomic,weak) id telephoneDelegate; /** 设置安装未回执frame @param datas <#datas description#> */ - (void)setUnInstallationInfoFrame:(UnInstallationInfoFrame *)datas; @end