// // MerchantBusinessLicenseView.h // merchant // // Created by qitewei on 2025/8/14. // Copyright © 2025 xfg. All rights reserved. // #import #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 *uploadImageView; @property (nonatomic, strong) UIImageView *uploadIconImageView; @property (nonatomic, strong) UILabel *uploadTipLabel; @property (nonatomic, copy, nullable) NSString *licenseURL; @end NS_ASSUME_NONNULL_END