Files
Kg.SeaTime/Service/Application.Domain.Entity/game/user/unit_user_weight.cs
Putoo 784bc66ef6 111
2026-05-20 18:32:54 +08:00

27 lines
618 B
C#

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