27 lines
530 B
Go
27 lines
530 B
Go
package proto
|
|
|
|
import "time"
|
|
|
|
type AddResponse struct {
|
|
Id uint
|
|
Account string
|
|
Name string
|
|
}
|
|
|
|
type User struct {
|
|
ID uint // 用户id
|
|
Account string // 用户账号
|
|
Name string // 姓名
|
|
Mobile string // 手机
|
|
Email string // 邮
|
|
Sex int // 性别:0-女,1-男
|
|
CreatedBy string // 创建人
|
|
CreatedOn time.Time // 记录创建时间
|
|
ModifiedBy string // 修改人
|
|
ModifiedOn time.Time // 记录修改时间
|
|
}
|
|
|
|
type LoginResponse struct {
|
|
User
|
|
}
|