SalesOrderGradeVC.h 667 B

12345678910111213141516171819
  1. //
  2. // IntermediateCustomerVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/2/1.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OrderListDelegate.h"
  10. #import "GradeCell.h"
  11. #import "GradeFrame.h"
  12. @interface SalesOrderGradeVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,OrderListDelegate>
  13. @property (nonatomic,strong) UITableView *tableView;
  14. @property(nonatomic,weak) id<OrderListDelegate> gradeDelegate;
  15. @property (strong, nonatomic) NSMutableArray *gradeList;
  16. @property (strong, nonatomic) NSMutableArray *gradeCheckedList;
  17. @property(nonatomic,assign) Boolean isPresentViewFlag;
  18. @end