MerchantBusinessLicenseView.h 882 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MerchantBusinessLicenseView.h
  3. // merchant
  4. //
  5. // Created by qitewei on 2025/8/14.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MerchantBaseEnrollContentView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MerchantBusinessLicenseView : MerchantBaseEnrollContentView
  12. // 公司名称
  13. @property (nonatomic, strong) UILabel *companyNameLabel;
  14. @property (nonatomic, strong) UITextField *companyNameTextField;
  15. // 统一社会信用代码
  16. @property (nonatomic, strong) UILabel *creditCodeLabel;
  17. @property (nonatomic, strong) UITextField *creditCodeTextField;
  18. // 营业执照扫描件
  19. @property (nonatomic, strong) UILabel *licenseImageLabel;
  20. @property (nonatomic, strong) UIView *licenseUploadView;
  21. @property (nonatomic, strong) UIImageView *uploadIconImageView;
  22. @property (nonatomic, strong) UILabel *uploadTipLabel;
  23. @end
  24. NS_ASSUME_NONNULL_END