using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_stock
{
///
/// usId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string usId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// goodsId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? goodsId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
///
/// type
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? type { get; set; }
///
/// code
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
///
/// sign
///
[SugarColumn(IsNullable = true)]
public long? sign { get; set; }
///
/// par
///
[SugarColumn(IsNullable = true)]
public string? par { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public long? endTime { get; set; }
}
}