Files
Kg.SeaTime/Service/Application.Domain.Entity/DB_Resource/Game/game_area.cs
Putoo a219fbec32 111
2026-04-27 17:53:43 +08:00

40 lines
920 B
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_area
{
/// <summary>
/// areaId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int areaId { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// 状态
/// </summary>
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
/// <summary>
/// 开放时间
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? opTime { get; set; }
/// <summary>
/// 添加时间
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}