| 12345678910111213141516171819202122232425 |
- //
- // MerchantEnrollCheckListView.h
- // merchant
- //
- // Created by qitewei on 2025/8/14.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MerchantBaseEnrollContentView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MerchantEnrollCheckListView : MerchantBaseEnrollContentView
- @property (nonatomic, strong) UIView *checkListContainerView;
- @property (nonatomic, strong) UIView *storeInfoView;
- @property (nonatomic, strong) UIView *businessLicenseView;
- @property (nonatomic, strong) UIView *legalInfoView;
- @property (nonatomic, strong) UIView *bankInfoView;
- @property (nonatomic, strong) UIView *adminInfoView;
- @end
- NS_ASSUME_NONNULL_END
|