|
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)
|
|
}
|