//
|
// WAPaymentHelper.h
|
// WACommon
|
//
|
// Created by lpw on 2026/3/10.
|
// Copyright © 2026 GHW-T-01. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface WAPaymentHelper : NSObject
|
// 获取币种符号
|
+ (NSString*)getCurrencySymbol:(NSString*)currencyCode;
|
|
/**
|
价格显示 例如 $1.99
|
*/
|
+ (NSString *)getProductDisplayAmount:(NSString *)currencyCode
|
amount:(NSDecimalNumber *)amount;
|
/**
|
金额显示,整数去掉小数,否则保留2位小数
|
*/
|
+ (NSString *)getBigDecimalAmountDisplay:(NSDecimalNumber *)amount ;
|
|
|
/**
|
金额放大100倍(分)
|
*/
|
+ (long long)getPriceAmountInCents:(NSDecimalNumber *)amount;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|