DeliveryListCell.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // DeliveryListCell.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 16/1/8.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:配送已回执列表单元格
  9. #import <UIKit/UIKit.h>
  10. #import "DeliveryListModel.h"
  11. #import "ReceiptedListFrame.h"
  12. @interface DeliveryListCell : UITableViewCell
  13. /**
  14. 回执单号
  15. */
  16. @property (strong,nonatomic) UILabel *receiptNo;
  17. @property (strong,nonatomic) UIButton *btnCancelReceipt;
  18. /**
  19. 安排单号
  20. */
  21. @property (strong,nonatomic) UILabel *arrangementNo;
  22. /**
  23. 配送单号
  24. */
  25. @property (strong,nonatomic) UILabel *deliveryNo;
  26. /**
  27. 客户名称
  28. */
  29. @property (strong,nonatomic) UILabel *customerName;
  30. @property (strong,nonatomic) UILabel *customerAddress;
  31. @property (strong,nonatomic) UILabel *customerTelephone;
  32. /**
  33. 回执日期
  34. */
  35. @property (strong,nonatomic) UILabel *receiptDate;
  36. /**
  37. 回执状态
  38. */
  39. @property (strong,nonatomic) UILabel *receiptStatus;
  40. @property (nonatomic,assign) NSInteger index;
  41. @property(nonatomic,weak)id<DialTelephoneDelegate> cancelDelegate;
  42. /**
  43. 配送已回执model
  44. */
  45. @property (strong,nonatomic) DeliveryListModel *deliveryListModel;
  46. /**
  47. 加载已回执列表ui
  48. @param frame <#frame description#>
  49. */
  50. - (void)setReceiptedListFrame:(ReceiptedListFrame *) frame;
  51. @end