app-cloudep-trade-service/internal/domain/wallet.go

20 lines
268 B
Go
Raw Normal View History

package domain
type WalletStatus int64
func (o *WalletStatus) ToInt() int {
return int(*o)
}
type ThreePartyStatus int64
func (o *ThreePartyStatus) ToInt() int {
return int(*o)
}
type DirectionType int64
func (o *DirectionType) ToInt() int {
return int(*o)
}