Files
Putoo dbace8a8b2 222
2026-05-23 18:36:37 +08:00

33 lines
783 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; }
/// <summary>
/// 船只当前负重
/// </summary>
[SugarColumn(IsNullable = true)]
public int? shipOnWeight { get; set; }
}
}