UnInstallationInfoTableViewCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // UnInstallationInfoCellTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 16/4/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:安装未回执单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "UnInstallationInfoFrame.h"
  11. #import "DialTelephoneDelegate.h"
  12. @interface UnInstallationInfoTableViewCell : UITableViewCell
  13. /**
  14. 安装单号
  15. */
  16. @property (strong,nonatomic) UILabel *installationNo;
  17. /**
  18. 客户名称
  19. */
  20. @property (strong,nonatomic) UILabel *customerName;
  21. /**
  22. 电话
  23. */
  24. @property (strong,nonatomic) UILabel *telephone;
  25. /**
  26. 客户地址
  27. */
  28. @property (strong,nonatomic) UILabel *customerAddress;
  29. /**
  30. 安排单号
  31. */
  32. @property (strong,nonatomic) UILabel *arrangementNo;
  33. /**
  34. 安装日期
  35. */
  36. @property (strong,nonatomic) UILabel *installationDate;
  37. @property(nonatomic,strong) NSString *telephoneNumber;
  38. @property(nonatomic,strong)UIButton *btnDialTelephone;
  39. @property (strong,nonatomic) UILabel *lblDepartment;
  40. @property (strong,nonatomic) UILabel *lblStaff;
  41. @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
  42. /**
  43. 设置安装未回执frame
  44. @param datas <#datas description#>
  45. */
  46. - (void)setUnInstallationInfoFrame:(UnInstallationInfoFrame *)datas;
  47. @end