| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // ReceiptDetailViewController
- // IOBSS 2.0
- //
- // Created by 刘瀚璘 on 2017.7.18
- // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 系统名称:
- // 功能描述:定制品回执详细
- #import <UIKit/UIKit.h>
- @interface ReceiptDetailViewController : BaseViewController
- /**
- 安排ID
- */
- @property (nonatomic,strong) NSString *arrangementID;
- /**
- 回执单号
- */
- @property (nonatomic,strong) NSString *receiptNo;
- /**
- 回执ID
- */
- @property (nonatomic,strong) NSString *deliveryID;
- /**
- 下载类
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- 数据
- */
- @property (nonatomic,strong) NSMutableArray *arrData;
- /**
- 图片
- */
- @property (nonatomic,strong) NSMutableArray *arrImagePaths;
- /**
- UITableView
- */
- @property (nonatomic,strong) UITableView *tableView;
- /**
- collectionView
- */
- @property (nonatomic,strong) UICollectionView *collectionView;
- @end
|