ReceiptedListFrame.h 2.0 KB

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