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