namespace Atomx.Admin.Client.Models
{
public class CorporationStaffModel
{
///
/// 数据ID
///
public long Id { get; set; }
///
/// 公司ID
///
public long CorporationId { get; set; }
///
/// 管理员用户名
///
public string Username { get; set; } = string.Empty;
///
/// 注册手机号
///
public string Mobile { get; set; } = string.Empty;
///
/// 注册邮箱
///
public string Email { get; set; } = string.Empty;
///
/// 登录密码
///
public string Password { get; set; } = string.Empty;
///
/// 新密码
///
public string NewPassword { get; set; } = string.Empty;
///
/// 确认密码
///
public string RePassword { get; set; } = string.Empty;
///
/// 是否设置密码
///
public bool SetPassword { get; set; }
///
/// 状态
///
public int Status { get; set; }
}
}