| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- //
- // RepairReceiptDetailVC.h
- // IBOSS
- //
- // Created by apple on 16/1/8.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:维修回执明细控制器
- #import "BaseViewController.h"
- #import "DKPhotoPickerBrowserViewController.h"
- @interface RepairReceiptDetailVC : BaseViewController
- /**
- 单据id
- */
- @property (strong,nonatomic)NSString *repairId;
- /**
- 单据号
- */
- @property (strong,nonatomic)NSString *repairNo;
- /**
- 安排单id
- */
- @property (strong,nonatomic)NSString *arrangementId;
- /**
- /安排单号
- */
- @property (strong,nonatomic)NSString *arrangementNo;
- /**
- 回执单号
- */
- @property (strong,nonatomic)NSString *receiptNo;
- /**
- 列表数组
- */
- @property (strong,nonatomic) NSMutableArray *dataList;
- /**
- 列表头数组
- */
- @property (strong,nonatomic) NSMutableArray *dataHead;
- /**
- 图片路径数组
- */
- @property (strong,nonatomic) NSMutableArray *imagePaths;
- /**
- 位置
- */
- @property (strong,nonatomic) NSString *position;
- /**
- tableview
- */
- @property (nonatomic,strong) UITableView *vCustomTableView;
- /**
- collection view
- */
- @property (nonatomic,strong) UICollectionView *collectionView;
- /**
- 相册数组
- */
- @property (nonatomic , strong) NSMutableArray *assets;
- /**
- header view
- */
- @property (nonatomic,strong) UIView *headerView;
- @end
|