RepairReceiptDetailVC.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //
  2. // RepairReceiptDetailVC.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/8.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:维修回执明细控制器
  9. #import "BaseViewController.h"
  10. #import "DKPhotoPickerBrowserViewController.h"
  11. @interface RepairReceiptDetailVC : BaseViewController
  12. /**
  13. 单据id
  14. */
  15. @property (strong,nonatomic)NSString *repairId;
  16. /**
  17. 单据号
  18. */
  19. @property (strong,nonatomic)NSString *repairNo;
  20. /**
  21. 安排单id
  22. */
  23. @property (strong,nonatomic)NSString *arrangementId;
  24. /**
  25. /安排单号
  26. */
  27. @property (strong,nonatomic)NSString *arrangementNo;
  28. /**
  29. 回执单号
  30. */
  31. @property (strong,nonatomic)NSString *receiptNo;
  32. /**
  33. 列表数组
  34. */
  35. @property (strong,nonatomic) NSMutableArray *dataList;
  36. /**
  37. 列表头数组
  38. */
  39. @property (strong,nonatomic) NSMutableArray *dataHead;
  40. /**
  41. 图片路径数组
  42. */
  43. @property (strong,nonatomic) NSMutableArray *imagePaths;
  44. /**
  45. 位置
  46. */
  47. @property (strong,nonatomic) NSString *position;
  48. /**
  49. tableview
  50. */
  51. @property (nonatomic,strong) UITableView *vCustomTableView;
  52. /**
  53. collection view
  54. */
  55. @property (nonatomic,strong) UICollectionView *collectionView;
  56. /**
  57. 相册数组
  58. */
  59. @property (nonatomic , strong) NSMutableArray *assets;
  60. /**
  61. header view
  62. */
  63. @property (nonatomic,strong) UIView *headerView;
  64. @end