MerchantEnrollViewController.h 449 B

1234567891011121314151617181920212223242526
  1. //
  2. // MerchantEnrollViewController.h
  3. // BuguLive
  4. //
  5. // Created by qitewei on 2025/8/11.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * 商家入驻页面
  12. * 显示商家入驻流程和提交申请
  13. */
  14. @interface MerchantEnrollViewController : UIViewController
  15. /**
  16. * 清除所有保存的入驻数据,重新开始流程
  17. */
  18. - (void)resetEnrollProcess;
  19. @end
  20. NS_ASSUME_NONNULL_END