Files
Kg.SeaTime/Service/Application.Domain.Entity/game/user/unit_user_online_time.cs
2026-06-04 18:25:31 +08:00

33 lines
777 B
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_online_time
{
/// <summary>
/// userId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
/// <summary>
/// dayTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? dayTime { get; set; }
/// <summary>
/// monthTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? monthTime { get; set; }
/// <summary>
/// totalTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? totalTime { get; set; }
}
}