memos/api/user.go

50 lines
934 B
Go
Raw Normal View History

2021-12-08 18:43:14 +03:00
package api
2022-02-03 10:32:03 +03:00
type User struct {
Id int `json:"id"`
CreatedTs int64 `json:"createdTs"`
UpdatedTs int64 `json:"updatedTs"`
2022-02-03 10:32:03 +03:00
OpenId string `json:"openId"`
Name string `json:"name"`
2022-02-04 12:06:04 +03:00
Password string `json:"-"`
2021-12-08 18:43:14 +03:00
}
2022-02-03 10:32:03 +03:00
type UserCreate struct {
OpenId string `json:"openId"`
Name string `json:"name"`
Password string `json:"password"`
2021-12-09 17:02:57 +03:00
}
2022-02-03 10:32:03 +03:00
type UserPatch struct {
Id int
2021-12-14 15:40:24 +03:00
2022-02-03 19:56:44 +03:00
OpenId *string
2021-12-14 15:40:24 +03:00
Name *string `json:"name"`
Password *string `json:"password"`
ResetOpenId *bool `json:"resetOpenId"`
2021-12-14 15:40:24 +03:00
}
2022-02-03 10:32:03 +03:00
type UserFind struct {
Id *int `json:"id"`
2021-12-09 17:02:57 +03:00
2022-02-04 16:24:21 +03:00
Name *string `json:"name"`
Password *string
OpenId *string
2021-12-08 18:43:14 +03:00
}
type UserRenameCheck struct {
Name string `json:"name"`
}
type UserPasswordCheck struct {
Password string `json:"password"`
}
2022-02-03 10:32:03 +03:00
type UserService interface {
CreateUser(create *UserCreate) (*User, error)
PatchUser(patch *UserPatch) (*User, error)
FindUser(find *UserFind) (*User, error)
2021-12-08 18:43:14 +03:00
}