19 lines
606 B
Go
19 lines
606 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Profile struct {
|
||
|
|
ID string `json:"id"`
|
||
|
|
Username string `json:"username"`
|
||
|
|
RealName string `json:"real_name,omitempty"`
|
||
|
|
Phone string `json:"phone,omitempty"`
|
||
|
|
Email string `json:"email,omitempty"`
|
||
|
|
Avatar string `json:"avatar,omitempty"`
|
||
|
|
Status int `json:"status"`
|
||
|
|
CompanyID string `json:"company_id,omitempty"`
|
||
|
|
CompanyName string `json:"company_name,omitempty"`
|
||
|
|
Role string `json:"role,omitempty"`
|
||
|
|
IsMaster bool `json:"is_master"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
}
|