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

20 lines
256 B
Go
Raw Normal View History

2024-10-31 04:05:22 +00:00
package wallet
2024-10-27 14:23:37 +00:00
2024-10-31 04:05:22 +00:00
type Status int64
2024-10-27 14:23:37 +00:00
2024-10-31 04:05:22 +00:00
func (o *Status) ToInt() int {
2024-10-27 14:23:37 +00:00
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)
}