2020-03-29 09:25:27 +08:00

26 lines
385 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package system
// UserEdit 用户编辑模型
type UserEdit struct {
// 编号
ID string
// 用户名
Username string
// 密码md5+盐)
Password string
// 姓名
Name string
// 角色ID
RoleID string
// 组织机构ID
DeptID string
// 性别0-未设置1-男2-女
Gender int
// 手机号
Phone string
// 电子邮件
Email string
// QQ号
QQ string
}