package base
|
|
|
|
/******************************************************************************
|
|
*
|
|
* @Struct Name : UserViewInfo
|
|
*-----------------------------------------------------------------------------
|
|
*
|
|
* @Description : 用户信息
|
|
*
|
|
* @Author : 娄文智
|
|
*
|
|
* @Date : 2021-05-26
|
|
*
|
|
******************************************************************************/
|
|
type UserViewInfo struct {
|
|
PlantNr int `json:"User-PlantNr"`
|
|
UserId string `json:"User-UserId"`
|
|
Name string `json:"User-Name"`
|
|
NickName string `json:"User-NickName"`
|
|
Phone string `json:"User-Phone"`
|
|
Email string `json:"User-Email"`
|
|
Status string `json:"User-Status"`
|
|
Gender string `json:"User-Gender"`
|
|
RoleId int `json:"User-RoleId"`
|
|
Role string `json:"User-Role"`
|
|
Remark string `json:"User-Remark"`
|
|
}
|
|
|
|
type SysUserPwd struct {
|
|
OldPassword string `json:"OldPassword"`
|
|
NewPassword string `json:"NewPassword"`
|
|
}
|
|
|
|
type MenuLable struct {
|
|
Id int `json:"id" xorm:"-"`
|
|
Label string `json:"label" xorm:"-"`
|
|
Children []MenuLable `json:"children" xorm:"-"`
|
|
}
|