2019-10-16 22:40:32 +08:00

60 lines
1.3 KiB
C#
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.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShadowEditor.Model.System
{
/// <summary>
/// 用户编辑模型
/// </summary>
public class UserEditModel
{
/// <summary>
/// 编号
/// </summary>
public string ID { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string Username { get; set; }
/// <summary>
/// 密码md5+盐)
/// </summary>
public string Password { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 角色ID
/// </summary>
public string RoleID { get; set; }
/// <summary>
/// 性别0-未设置1-男2-女
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 手机号
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 电子邮件
/// </summary>
public string Email { get; set; }
/// <summary>
/// QQ号
/// </summary>
public string QQ { get; set; }
}
}