// // MerchantBankInfoView.h // merchant // // Created by qitewei on 2025/8/14. // Copyright © 2025 xfg. All rights reserved. // #import #import "MerchantBaseEnrollContentView.h" NS_ASSUME_NONNULL_BEGIN @interface MerchantBankInfoView : MerchantBaseEnrollContentView // 提示信息 @property (nonatomic, strong) UIView *warningView; @property (nonatomic, strong) UIImageView *warningIcon; @property (nonatomic, strong) UILabel *warningLabel; // 账户名称 @property (nonatomic, strong) UILabel *accountNameLabel; @property (nonatomic, strong) UITextField *accountNameTextField; // 账户号码 @property (nonatomic, strong) UILabel *accountNumberLabel; @property (nonatomic, strong) UITextField *accountNumberTextField; // 开户行 @property (nonatomic, strong) UILabel *bankNameLabel; @property (nonatomic, strong) UITextField *bankNameTextField; // 请上传银行卡 @property (nonatomic, strong) UILabel *uploadBankCardLabel; // 正面 @property (nonatomic, strong) UIView *frontCardView; @property (nonatomic, strong) UILabel *frontCardTitleLabel; @property (nonatomic, strong) UILabel *frontCardSubtitleLabel; @property (nonatomic, strong) UIImageView *frontCardImageView; // 反面 @property (nonatomic, strong) UIView *backCardView; @property (nonatomic, strong) UILabel *backCardTitleLabel; @property (nonatomic, strong) UILabel *backCardSubtitleLabel; @property (nonatomic, strong) UIImageView *backCardImageView; @property (nonatomic, copy, nullable) NSString *frontURL; @property (nonatomic, copy, nullable) NSString *backURL; @end NS_ASSUME_NONNULL_END