32 lines
769 B
C#
32 lines
769 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace YBDevice.Entity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 管理后台使用的权限接口定义
|
|||
|
|
/// </summary>
|
|||
|
|
public class WebApiOperaModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户ID
|
|||
|
|
/// </summary>
|
|||
|
|
public int UserId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 过期时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime expiretime { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 唯一的登录ID,主要用于单点登录
|
|||
|
|
/// </summary>
|
|||
|
|
public string gid { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户登录的openid
|
|||
|
|
/// </summary>
|
|||
|
|
public string OpenId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|