using System; using System.Collections.Generic; using System.Text; namespace System.Model { /// /// 登录日志表 /// [Serializable] public partial class T_Sys_LoginLogs { /// /// 自增id /// public int F_Id { get; set; } /// /// 登陆工号 /// public string F_LoginCode { get; set; } /// /// 登陆ID /// public int? F_LoginId { get; set; } /// /// 登陆结果 /// public string F_Result { get; set; } /// /// 登陆IP /// public string F_LoginIP { get; set; } /// /// 登陆时间 /// public DateTime? F_LoginDate { get; set; } /// /// 备注 /// public string F_Remark { get; set; } /// /// 状态 /// public int? F_State { get; set; } /// /// 退出时间 /// public DateTime? F_LoginOutDate { get; set; } /// /// 渠道来源 1表示PC 2表示安卓 3表示IOS 4表示微信 /// public int F_Channel { get; set; } = 1; } }