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