RequirementNoReceiptCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // RequirementNoReceiptCell.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 "UnReceiptListModel.h"
  10. #import "RequirementNoReceiptFrame.h"
  11. @interface RequirementNoReceiptCell : UITableViewCell
  12. /**
  13. 配送单号
  14. */
  15. @property (strong,nonatomic) UILabel *deliveryNo;
  16. /**
  17. 客户名称
  18. */
  19. @property (strong,nonatomic) UILabel *customerName;
  20. /**
  21. 电话
  22. */
  23. @property (strong,nonatomic) UILabel *telephone;
  24. /**
  25. 客户地址
  26. */
  27. @property (strong,nonatomic) UILabel *customerAddress;
  28. /**
  29. 安排单号
  30. */
  31. @property (strong,nonatomic) UILabel *arrangementNo;
  32. /**
  33. 配送日期
  34. */
  35. @property (strong,nonatomic) UILabel *deliveryDate;
  36. /**
  37. 车牌号码
  38. */
  39. @property (strong,nonatomic) UILabel *truckName;
  40. @property(strong,nonatomic) NSString *telephoneNumber;
  41. @property(nonatomic,strong)UIButton *btnDialTelephone;
  42. @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
  43. /**
  44. 设置配送未回执frame
  45. @param datas <#datas description#>
  46. */
  47. - (void)setUnReceiptListFrame:(RequirementNoReceiptFrame *)datas;
  48. @end