using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RMYY_CallCenter_Api.Model
{
public class T_Sys_Login_Logs
{
public string T_id { get; set; }
///
/// 用户名字
///
public string T_username { get; set; }
///
/// 用户工号
///
public string T_usercode { get; set; }
///
/// 备注
///
public string T_result { get; set; }
///
/// ip
///
public string T_login_ip { get; set; }
///
/// 渠道来源 1表示PC 2表示安卓 3表示IOS 4表示微信
///
public int T_channel { get; set; } = 1;
///
/// 登录时间
///
public DateTime T_time { get; set; }
///
/// 登出时间
///
public DateTime T_LoginOutDate { get; set; }
}
}