using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_online
{
///
/// userId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
///
/// mapId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapId { get; set; }
///
/// ip
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? ip { get; set; }
///
/// upTime
///
[SugarColumn(IsNullable = true)]
public long? upTime { get; set; }
}
}