RepairReceiptListCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // RepairReceiptListCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. //功能描述:维修已回执单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "RepairReceiptListModel.h"
  11. #import "RepairReceiptFrame.h"
  12. @interface RepairReceiptListCell : UITableViewCell
  13. /**
  14. 回执单号
  15. */
  16. @property (strong,nonatomic) UILabel *receiptNo;
  17. /**
  18. 安排单号
  19. */
  20. @property (strong,nonatomic) UILabel *arragementNo;
  21. /**
  22. 维修单号
  23. */
  24. @property (strong,nonatomic) UILabel *repairNo;
  25. /**
  26. 客户名称
  27. */
  28. @property (strong,nonatomic) UILabel *customerName;
  29. @property (strong,nonatomic) UILabel *customerAddress;
  30. @property (strong,nonatomic) UILabel *customerTelephone;
  31. /**
  32. 客服人员
  33. */
  34. @property (strong,nonatomic) UILabel *serviceStaffName;
  35. /**
  36. 回执日期
  37. */
  38. @property (strong,nonatomic) UILabel *receiptDate;
  39. /**
  40. 回执类型
  41. */
  42. @property (strong,nonatomic) UILabel *receiptType;
  43. /**
  44. 安排单id
  45. */
  46. @property (strong,nonatomic)NSString *arrangementId;
  47. /**
  48. 设置维修已回执frame
  49. @param frame <#frame description#>
  50. */
  51. - (void)parseInfoFrame:(RepairReceiptFrame*)frame;
  52. @end