UnReceiptListCell.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // UnReceiptListCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 16/4/14.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:配送未回执列表单元格
  9. #import <UIKit/UIKit.h>
  10. #import "UnReceiptListModel.h"
  11. #import "UnReceiptListFrame.h"
  12. #import "DialTelephoneDelegate.h"
  13. @interface UnReceiptListCell : UITableViewCell
  14. /**
  15. 配送单号
  16. */
  17. @property (strong,nonatomic) UILabel *deliveryNo;
  18. /**
  19. 客户名称
  20. */
  21. @property (strong,nonatomic) UILabel *customerName;
  22. /**
  23. 电话
  24. */
  25. @property (strong,nonatomic) UILabel *telephone;
  26. /**
  27. 客户地址
  28. */
  29. @property (strong,nonatomic) UILabel *customerAddress;
  30. /**
  31. 安排单号
  32. */
  33. @property (strong,nonatomic) UILabel *arrangementNo;
  34. /**
  35. 配送日期
  36. */
  37. @property (strong,nonatomic) UILabel *deliveryDate;
  38. @property (strong,nonatomic) UILabel *lblDepartment;
  39. @property (strong,nonatomic) UILabel *lblStaff;
  40. /**
  41. 车牌号码
  42. */
  43. @property (strong,nonatomic) UILabel *truckName;
  44. @property(strong,nonatomic) NSString *telephoneNumber;
  45. @property(nonatomic,strong)UIButton *btnDialTelephone;
  46. @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
  47. /**
  48. 设置配送未回执frame
  49. @param datas <#datas description#>
  50. */
  51. - (void)setUnReceiptListFrame:(UnReceiptListFrame *)datas;
  52. @end