RequirementReceiptCell.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // RequirementReceiptCell.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RequirementReceiptModel.h"
  10. #import "RequirementReceiptFrame.h"
  11. @protocol RequirementReceiptCellDelegate <NSObject>
  12. @optional
  13. - (void)showReturnReceipt:(RequirementReceiptModel*) model;
  14. @end
  15. @interface RequirementReceiptCell : UITableViewCell
  16. /**
  17. 回执单号
  18. */
  19. @property (strong,nonatomic) UILabel *receiptNo;
  20. /**
  21. 安排单号
  22. */
  23. @property (strong,nonatomic) UILabel *arrangementNo;
  24. /**
  25. 配送单号
  26. */
  27. @property (strong,nonatomic) UILabel *deliveryNo;
  28. /**
  29. 客户名称
  30. */
  31. @property (strong,nonatomic) UILabel *customerName;
  32. /**
  33. 回执日期
  34. */
  35. @property (strong,nonatomic) UILabel *receiptDate;
  36. /**
  37. 回执状态
  38. */
  39. @property (strong,nonatomic) UILabel *receiptStatus;
  40. @property (strong,nonatomic) id<RequirementReceiptCellDelegate> delegate ;
  41. /**
  42. 配送已回执model
  43. */
  44. @property (strong,nonatomic) RequirementReceiptModel *deliveryListModel;
  45. /**
  46. 加载已回执列表ui
  47. @param frame <#frame description#>
  48. */
  49. - (void)setReceiptedListFrame:(RequirementReceiptFrame *) frame;
  50. @end