| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // UnInstallationInfoCellTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 16/4/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:安装未回执单元格类
- #import <UIKit/UIKit.h>
- #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<DialTelephoneDelegate> telephoneDelegate;
- /**
- 设置安装未回执frame
- @param datas <#datas description#>
- */
- - (void)setUnInstallationInfoFrame:(UnInstallationInfoFrame *)datas;
- @end
|