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