| 1234567891011121314151617181920212223242526272829303132 |
- //
- // MerchantBusinessLicenseView.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 MerchantBusinessLicenseView : MerchantBaseEnrollContentView
- // 公司名称
- @property (nonatomic, strong) UILabel *companyNameLabel;
- @property (nonatomic, strong) UITextField *companyNameTextField;
- // 统一社会信用代码
- @property (nonatomic, strong) UILabel *creditCodeLabel;
- @property (nonatomic, strong) UITextField *creditCodeTextField;
- // 营业执照扫描件
- @property (nonatomic, strong) UILabel *licenseImageLabel;
- @property (nonatomic, strong) UIView *licenseUploadView;
- @property (nonatomic, strong) UIImageView *uploadIconImageView;
- @property (nonatomic, strong) UILabel *uploadTipLabel;
- @end
- NS_ASSUME_NONNULL_END
|