MerchantLegalInfoView.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // MerchantLegalInfoView.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 MerchantLegalInfoView : MerchantBaseEnrollContentView
  12. // 姓名
  13. @property (nonatomic, strong) UILabel *nameLabel;
  14. @property (nonatomic, strong) UITextField *nameTextField;
  15. // 身份证号码
  16. @property (nonatomic, strong) UILabel *idNumberLabel;
  17. @property (nonatomic, strong) UITextField *idNumberTextField;
  18. // 请上传身份证
  19. @property (nonatomic, strong) UILabel *idCardLabel;
  20. // 正面
  21. @property (nonatomic, strong) UIView *frontCardView;
  22. @property (nonatomic, strong) UILabel *frontCardTitleLabel;
  23. @property (nonatomic, strong) UILabel *frontCardSubtitleLabel;
  24. @property (nonatomic, strong) UIImageView *frontCardImageView;
  25. // 反面
  26. @property (nonatomic, strong) UIView *backCardView;
  27. @property (nonatomic, strong) UILabel *backCardTitleLabel;
  28. @property (nonatomic, strong) UILabel *backCardSubtitleLabel;
  29. @property (nonatomic, strong) UIImageView *backCardImageView;
  30. @end
  31. NS_ASSUME_NONNULL_END