20 lines
268 B
Go
20 lines
268 B
Go
|
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)
|
||
|
}
|