40 lines
1.5 KiB
Go
40 lines
1.5 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
// 用户表实体信息
|
|
type User struct {
|
|
Id int `json:"id"`
|
|
AccountId string `json:"account_id"`
|
|
Name string `json:"name"`
|
|
RealName string `json:"real_name"`
|
|
Sn string `json:"sn"`
|
|
Gender string `json:"gender"`
|
|
Email string `json:"email"`
|
|
IdCardNumber string `json:"id_card_number"`
|
|
Description string `json:"description"`
|
|
TelephoneNumber string `json:"telephone_number"`
|
|
Phone string `json:"phone"`
|
|
Mobile string `json:"mobile"`
|
|
EmployeeNumber string `json:"employee_number"`
|
|
EmployeeType string `json:"employee_type"`
|
|
Organize string `json:"organize"`
|
|
SupporterCorpName string `json:"supporter_corp_name"`
|
|
StartTime time.Time `json:"start_time"`
|
|
EndTime time.Time `json:"end_time"`
|
|
Password string `json:"password"`
|
|
PasswordSha512 string `json:"password_sha512"`
|
|
ChangePasswordFlag int `json:"change_password_flag"`
|
|
PasswordExpiration string `json:"password_expiration"`
|
|
Status string `json:"status"`
|
|
UserExpiration string `json:"user_expiration"`
|
|
GroupName string `json:"group_name"`
|
|
Profile string `json:"profile"`
|
|
CreateTime time.Time `json:"create_time"`
|
|
UpdateTime time.Time `json:"update_time"`
|
|
}
|
|
|
|
func (User) TableName() string {
|
|
return "user"
|
|
}
|