RequirementReceiptFrame.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. //
  2. // RequirementReceiptFrame.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RequirementReceiptModel.h"
  10. @interface RequirementReceiptFrame : NSObject
  11. /**
  12. 配送已回执列表model
  13. */
  14. @property (strong,nonatomic)RequirementReceiptModel *deliveryListModel;
  15. /**
  16. 设置配送已回执列表frame
  17. @return <#return value description#>
  18. */
  19. - (void)setReceiptedListFrame:(RequirementReceiptModel *)deliveryListModel;
  20. /**
  21. 回执单号title frame
  22. */
  23. @property (nonatomic, assign)CGRect lblReceiptNoF;
  24. @property (nonatomic, assign)CGRect separatorF;
  25. /**
  26. 安排单号title frame
  27. */
  28. @property (nonatomic, assign)CGRect lblArrangementNoF;
  29. /**
  30. 配送单号title frame
  31. */
  32. @property (nonatomic, assign)CGRect lblDeliveryNoF;
  33. /**
  34. 客户名称title frame
  35. */
  36. @property (nonatomic, assign)CGRect lblCustomerNameF;
  37. /**
  38. 回执日期title frame
  39. */
  40. @property (nonatomic, assign)CGRect lblReceiptDateF;
  41. /**
  42. 客户地址title frame
  43. */
  44. @property (nonatomic, assign)CGRect lblCustomerAddressF;
  45. /**
  46. 回执状态title frame
  47. */
  48. @property (nonatomic, assign)CGRect lblReceiptStatusF;
  49. /**
  50. 回执单号frame
  51. */
  52. @property (nonatomic, assign)CGRect receiptNoF;
  53. /**
  54. 安排单号frame
  55. */
  56. @property (nonatomic, assign)CGRect arrangementNoF;
  57. /**
  58. 配送单号frame
  59. */
  60. @property (nonatomic, assign)CGRect deliveryNoF;
  61. /**
  62. 客户名称frame
  63. */
  64. @property (nonatomic, assign)CGRect customerNameF;
  65. /**
  66. 回执日期frame
  67. */
  68. @property (nonatomic, assign)CGRect receiptDateF;
  69. /**
  70. 客户地址frame
  71. */
  72. @property (nonatomic, assign)CGRect customerAddressF;
  73. /**
  74. 回执状态frame
  75. */
  76. @property (nonatomic, assign)CGRect receiptStatusF;
  77. /**
  78. cell高度
  79. */
  80. @property (nonatomic, assign)NSUInteger cellHeight;
  81. /**
  82. 撤销回执
  83. */
  84. @property (nonatomic, assign)CGRect lblReceiptStateFrame;
  85. /**
  86. 底部line
  87. */
  88. @property (nonatomic, assign)CGRect bottomLineF;
  89. /**
  90. 撤销回执
  91. */
  92. @property (nonatomic, assign)CGRect returnReceiptF;
  93. @end