using System; using System.Collections.Generic; namespace WebAPIServer.Models; public partial class TblUtsManangeUseronlinelog { public int Id { get; set; } /// /// 用户名字 /// public string? UserNames { get; set; } /// /// ip地址 /// public string? Ip { get; set; } /// /// 1是在线 0不在线 /// public int? State { get; set; } public DateTime? CreationTime { get; set; } }