InstallReceiptListCell.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //
  2. // InstallReceiptListCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/8.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:安装已回执单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "InstallReceiptListModel.h"
  11. #import "InstallReceiptedListFrame.h"
  12. @interface InstallReceiptListCell : UITableViewCell
  13. /**
  14. 回执单号
  15. */
  16. @property (strong,nonatomic) UILabel *receiptNo;
  17. @property (strong,nonatomic) UIButton *btnCancelReceipt;
  18. /**
  19. 安排单号
  20. */
  21. @property (strong,nonatomic) UILabel *arragementNo;
  22. /**
  23. 安装单号
  24. */
  25. @property (strong,nonatomic) UILabel *installNo;
  26. /**
  27. 客户名称
  28. */
  29. @property (strong,nonatomic) UILabel *customerName;
  30. @property (strong,nonatomic) UILabel *customerAddress;
  31. @property (strong,nonatomic) UILabel *customerTelephone;
  32. /**
  33. 回执日期
  34. */
  35. @property (strong,nonatomic) UILabel *receiptDate;
  36. /**
  37. 回执类型
  38. */
  39. @property (strong,nonatomic) UILabel *receiptType;
  40. /**
  41. 安装已回执模型
  42. */
  43. @property (strong,nonatomic) InstallReceiptListModel *installationReceiptListModel;
  44. @property(nonatomic,weak)id<DialTelephoneDelegate> cancelDelegate;
  45. @property(nonatomic,assign) NSInteger index;
  46. /**
  47. 设置安装已回执frame
  48. @param frame <#frame description#>
  49. */
  50. - (void)parseInfoFrame:(InstallReceiptedListFrame*)frame;
  51. @end