ReceiptDetailViewController.h 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // ReceiptDetailViewController
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.18
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:定制品回执详细
  9. #import <UIKit/UIKit.h>
  10. @interface ReceiptDetailViewController : BaseViewController
  11. /**
  12. 安排ID
  13. */
  14. @property (nonatomic,strong) NSString *arrangementID;
  15. /**
  16. 回执单号
  17. */
  18. @property (nonatomic,strong) NSString *receiptNo;
  19. /**
  20. 回执ID
  21. */
  22. @property (nonatomic,strong) NSString *deliveryID;
  23. /**
  24. 下载类
  25. */
  26. @property (nonatomic,strong) ASIDownManager *downManager;
  27. /**
  28. 数据
  29. */
  30. @property (nonatomic,strong) NSMutableArray *arrData;
  31. /**
  32. 图片
  33. */
  34. @property (nonatomic,strong) NSMutableArray *arrImagePaths;
  35. /**
  36. UITableView
  37. */
  38. @property (nonatomic,strong) UITableView *tableView;
  39. /**
  40. collectionView
  41. */
  42. @property (nonatomic,strong) UICollectionView *collectionView;
  43. @end