Documentation
¶
Index ¶
- Variables
- type CheckImoneyDepositService
- type EncodeImoneyService
- type Imoney
- type ImoneyExchangeService
- func (this *ImoneyExchangeService) Exchange(sourceImoney, destImoney *Imoney, amount int) int
- func (this *ImoneyExchangeService) ExchangeByImoneyCode(sourceImoneyCode, destImoneyCode string, sourceAmount int) int
- func (this *ImoneyExchangeService) ExchangeCash(sourceImoneyCode string, amount int) int
- type ImoneyManager
- type ImoneyRepository
- type RImoney
Constants ¶
This section is empty.
Variables ¶
View Source
var Code2Imoney map[string]*Imoney
View Source
var Imoneys []*Imoney
Functions ¶
This section is empty.
Types ¶
type CheckImoneyDepositService ¶
type CheckImoneyDepositService struct {
eel.ServiceBase
}
func NewCheckImoneyDepositService ¶
func NewCheckImoneyDepositService(ctx context.Context) *CheckImoneyDepositService
func (*CheckImoneyDepositService) Check ¶
func (this *CheckImoneyDepositService) Check(params params.DepositParams)
CheckDepositOrder 校验充值订单
type EncodeImoneyService ¶
type EncodeImoneyService struct {
eel.ServiceBase
}
func NewEncodeImoneyService ¶
func NewEncodeImoneyService(ctx context.Context) *EncodeImoneyService
func (*EncodeImoneyService) Encode ¶
func (this *EncodeImoneyService) Encode(imoney *Imoney) *RImoney
func (*EncodeImoneyService) EncodeMany ¶
func (this *EncodeImoneyService) EncodeMany(imoneys []*Imoney) []*RImoney
type Imoney ¶
type Imoney struct { Code string DisplayName string ExchangeRate float64 IsPayable bool IsDebtable bool }
func NewImoneyFromModel ¶
func (*Imoney) ExchangeCash ¶
ExchangeCash 兑换成现金 比如:mpcoin的exchange_rate是0.5,则,exchange_cash(10) => 5 结果四舍五入
type ImoneyExchangeService ¶
type ImoneyExchangeService struct {
eel.ServiceBase
}
func NewImoneyExchangeService ¶
func NewImoneyExchangeService(ctx context.Context) *ImoneyExchangeService
func (*ImoneyExchangeService) Exchange ¶
func (this *ImoneyExchangeService) Exchange(sourceImoney, destImoney *Imoney, amount int) int
func (*ImoneyExchangeService) ExchangeByImoneyCode ¶
func (this *ImoneyExchangeService) ExchangeByImoneyCode(sourceImoneyCode, destImoneyCode string, sourceAmount int) int
ExchangeByImoneyCode 虚拟资产兑换
func (*ImoneyExchangeService) ExchangeCash ¶
func (this *ImoneyExchangeService) ExchangeCash(sourceImoneyCode string, amount int) int
ExchangeCash 兑换成现金数额
type ImoneyManager ¶
type ImoneyManager struct {
eel.ServiceBase
}
func NewImoneyManager ¶
func NewImoneyManager(ctx context.Context) *ImoneyManager
func (*ImoneyManager) Add ¶
func (this *ImoneyManager) Add(imoney *Imoney)
func (*ImoneyManager) GetImoneyByCode ¶
func (this *ImoneyManager) GetImoneyByCode(code string) *Imoney
func (*ImoneyManager) ImoneyExisted ¶
func (this *ImoneyManager) ImoneyExisted(code string) bool
func (*ImoneyManager) Remove ¶
func (this *ImoneyManager) Remove(imoney *Imoney)
type ImoneyRepository ¶
type ImoneyRepository struct { eel.ServiceBase // contains filtered or unexported fields }
func NewImoneyRepository ¶
func NewImoneyRepository(ctx context.Context) *ImoneyRepository
func (*ImoneyRepository) GetByCode ¶
func (this *ImoneyRepository) GetByCode(code string) *Imoney
Source Files
¶
Click to show internal directories.
Click to hide internal directories.