You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace FactorySystemModel.BusinessModel
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// api授权信息实体
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ApiAuthInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
public ApiAuthInfo()
|
|
|
|
|
|
{
|
|
|
|
|
|
FID = -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 登陆人ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int FID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 登录账号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string FUser { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 登陆人姓名
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string FName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 口令过期时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string FExpireTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public static implicit operator ApiAuthInfo(bool v)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|