错误处理中间件

This commit is contained in:
des
2026-01-15 18:57:32 +08:00
parent 69dad45d6a
commit c61fb947e7
4 changed files with 55 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
package user
import (
"time"
)
type User struct {
Id int64
CreateTime time.Time
LastUpdateTime time.Time
Name string
Account string
Passwd string
}