OrderDetailHeadViewController.h 543 B

12345678910111213141516171819202122232425262728
  1. //
  2. // OrderDetailHeadViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2018/11/16.
  6. // Copyright © 2018 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OrderAuditListModel.h"
  10. #define orderTextFont [UIFont systemFontOfSize:14]
  11. @interface OrderDetailHeadViewController : BaseViewController
  12. /**
  13. UIScrollView
  14. */
  15. @property (nonatomic,strong) UIScrollView *scroll;
  16. /**
  17. 子布局
  18. */
  19. @property (nonatomic,strong) UIView *contentView;
  20. @property(nonatomic,strong)OrderAuditListModel *auditListModel;
  21. @end