You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
285 B
24 lines
285 B
package sysBean
|
|
|
|
type LoginReq struct {
|
|
Name string
|
|
Pass string
|
|
}
|
|
|
|
type LoginRes struct {
|
|
Stat int
|
|
Uid int64
|
|
Xid string
|
|
Name string
|
|
Errs string
|
|
}
|
|
type RegReq struct {
|
|
Name string
|
|
Pass string
|
|
Nick string
|
|
}
|
|
type UppassReq struct {
|
|
Xid string
|
|
Pass string
|
|
NPass string
|
|
}
|