InstallReceiptedListFrame.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //
  2. // InstallReceiptedListFrame.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/7/13.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. // 功能描述:安装已回执frame
  8. #import <Foundation/Foundation.h>
  9. #import "InstallReceiptListModel.h"
  10. @interface InstallReceiptedListFrame : NSObject
  11. /**
  12. 回执单号标题frame
  13. */
  14. @property (nonatomic, assign)CGRect lblReceiptNoF;
  15. @property (nonatomic, assign)CGRect btnCancelReceiptF;
  16. /**
  17. 分隔线frame
  18. */
  19. @property (nonatomic, assign)CGRect separatorF;
  20. /**
  21. 安排单号标题frame
  22. */
  23. @property (nonatomic, assign)CGRect lblArrangementNoF;
  24. /**
  25. 安装单号标题frame
  26. */
  27. @property (nonatomic, assign)CGRect lblInstallationNoF;
  28. /**
  29. 客户名称标题frame
  30. */
  31. @property (nonatomic, assign)CGRect lblCustomerNameF;
  32. /**
  33. 回执日期标题frame
  34. */
  35. @property (nonatomic,assign) CGRect lblReceiptDateF;
  36. /**
  37. 回执状态标题frame
  38. */
  39. @property (nonatomic,assign) CGRect lblReceiptStatusF;
  40. /**
  41. 回执单号frame
  42. */
  43. @property (nonatomic, assign)CGRect receiptNoF;
  44. /**
  45. 安排单号frame
  46. */
  47. @property (nonatomic, assign)CGRect arrangementNoF;
  48. /**
  49. 安装单号frame
  50. */
  51. @property (nonatomic, assign)CGRect installationNoF;
  52. /**
  53. 客户名称frame
  54. */
  55. @property (nonatomic, assign)CGRect customerNameF;
  56. /**
  57. 回执日期frame
  58. */
  59. @property (nonatomic, assign)CGRect receiptDateF;
  60. /**
  61. 回执状态frame
  62. */
  63. @property (nonatomic, assign)CGRect receiptStatusF;
  64. @property (nonatomic, assign)CGRect lblCustomerAddressF;
  65. @property (nonatomic, assign)CGRect customerAddressF;
  66. @property (nonatomic, assign)CGRect lblCustomerTelephoneF;
  67. @property (nonatomic, assign)CGRect customerTelephoneF;
  68. /**
  69. 安装已回执模型
  70. */
  71. @property (strong,nonatomic) InstallReceiptListModel *installationReceiptListModel;
  72. /**
  73. 设置安装已回执frame
  74. @param installationInfoModel <#installationInfoModel description#>
  75. */
  76. - (void)setInstallationListFrame:(InstallReceiptListModel *)installationInfoModel;
  77. /**
  78. 单元格高度
  79. */
  80. @property (nonatomic, assign)NSUInteger cellHeight;
  81. @end