using System;
namespace FactorySystemModel.BusinessModel
{
///
/// api授权信息实体
///
public class ApiAuthInfo
{
public ApiAuthInfo()
{
FID = -1;
}
///
/// 登陆人ID
///
public int FID { get; set; }
///
/// 登录账号
///
public string FUser { get; set; }
///
/// 登陆人姓名
///
public string FName { get; set; }
///
/// 口令过期时间
///
public string FExpireTime { get; set; }
public static implicit operator ApiAuthInfo(bool v)
{
throw new NotImplementedException();
}
}
}