UnReceiptListFrame.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // UnReceiptListFrame.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 16/4/14.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:配送未回执frame
  9. #import <Foundation/Foundation.h>
  10. #import "UnReceiptListModel.h"
  11. @interface UnReceiptListFrame : NSObject
  12. /**
  13. 未回执模型
  14. */
  15. @property (strong,nonatomic)UnReceiptListModel *unReceiptListModel;
  16. /**
  17. 设置未回执frame
  18. @param unReceiptListModel <#unReceiptListModel description#>
  19. */
  20. - (void)setUnReceiptListFrame:(UnReceiptListModel *)unReceiptListModel;
  21. /**
  22. 安排单号标题frame
  23. */
  24. @property (nonatomic, assign)CGRect lblArrangementNoF;
  25. @property(nonatomic,assign)CGRect btnDialTelephoneF;
  26. /**
  27. 送货单号标题frame
  28. */
  29. @property (nonatomic, assign)CGRect lblDeliveryNoF;
  30. /**
  31. 车牌号码标题frame
  32. */
  33. @property (nonatomic, assign)CGRect lblTruckNameF;
  34. /**
  35. 配送日期标题frame
  36. */
  37. @property (nonatomic, assign)CGRect lblDeliveryDateF;
  38. /**
  39. 客户名称标题frame
  40. */
  41. @property (nonatomic, assign)CGRect lblCustomerNameF;
  42. /**
  43. 客户电话标题frame
  44. */
  45. @property (nonatomic, assign)CGRect lblCustomerTelephoneF;
  46. /**
  47. 客户地址标题frame
  48. */
  49. @property (nonatomic, assign)CGRect lblCustomerAddressF;
  50. /**
  51. 安排单号frame
  52. */
  53. @property (nonatomic, assign)CGRect arrangementNoF;
  54. /**
  55. 送货单号frame
  56. */
  57. @property (nonatomic, assign)CGRect deliveryNoF;
  58. /**
  59. 车牌号码frame
  60. */
  61. @property (nonatomic, assign)CGRect truckNameF;
  62. /**
  63. 送货日期frame
  64. */
  65. @property (nonatomic, assign)CGRect deliveryDateF;
  66. /**
  67. 客户名称frame
  68. */
  69. @property (nonatomic, assign)CGRect customerNameF;
  70. /**
  71. 客户电话frame
  72. */
  73. @property (nonatomic, assign)CGRect customerTelephoneF;
  74. /**
  75. 客户地址frame
  76. */
  77. @property (nonatomic, assign)CGRect customerAddressF;
  78. @property (nonatomic, assign)CGRect lblOrganizationNameF;
  79. @property (nonatomic, assign)CGRect organizationNameF;
  80. @property (nonatomic, assign)CGRect lblStaffNameF;
  81. @property (nonatomic, assign)CGRect staffNameF;
  82. /**
  83. 分隔线frame
  84. */
  85. @property (nonatomic, assign)CGRect separatorF;
  86. /**
  87. 单元格高度
  88. */
  89. @property (nonatomic, assign)NSUInteger cellHeight;
  90. @end