CustomerCodeShareVC.h 954 B

1234567891011121314151617181920212223
  1. //
  2. // CustomerCodeShareViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/7/16.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InvoiceStyleDelegate.h"
  10. @interface CustomerCodeShareVC : BaseViewController<UICollectionViewDelegate,UICollectionViewDataSource,InvoiceStyleDelegate>
  11. @property (nonatomic , strong) UICollectionView *collectionView;
  12. @property(nonatomic,strong) NSMutableArray *photoList;
  13. @property(nonatomic,strong) NSMutableArray *shareList;
  14. @property (nonatomic, strong) NSMutableDictionary *cellDic;
  15. @property(nonatomic,strong)UIButton *btnCheckAll;
  16. @property(nonatomic,assign)Boolean isCheckedAll;
  17. @property(nonatomic,strong)UIView *bottomView;
  18. @property(nonatomic,strong) UITapGestureRecognizer *gestureRecognizer;
  19. @property(nonatomic,assign) Boolean clickMode;
  20. @property (nonatomic,strong) ASIDownManager *downManager;
  21. @property(nonatomic,strong) NSString *orderId;
  22. @end