ark-member/internal/domain/sttatus.go

17 lines
257 B
Go
Raw Permalink Normal View History

2024-07-21 15:57:56 +00:00
package domain
import "fmt"
type Code int
func (c Code) ToString() string {
return fmt.Sprintf("%d", c)
}
const (
CodeOk = Code(102000)
CodeParamInvalid = Code(304000)
CodeInternalError = Code(305000)
CodeAccountExists = Code(306000)
)