RepairUnReceiptCell.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // RepairUnReceiptCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 16/4/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. //功能描述:维修未回执单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "RepairUnReceiptFrame.h"
  11. @interface RepairUnReceiptCell : UITableViewCell
  12. /**
  13. 维修单号
  14. */
  15. @property (strong,nonatomic) UILabel *repairNo;
  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 *repairDate;
  36. @property (strong,nonatomic) UILabel *lblDepartment;
  37. @property (strong,nonatomic) UILabel *lblStaff;
  38. @property (strong,nonatomic) UILabel *lblQuestionDesc;
  39. /**
  40. 设置维修未回执frame
  41. @param datas <#datas description#>
  42. */
  43. - (void)setUnRepairInfoFrame:(RepairUnReceiptFrame *)datas;
  44. @end