using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_notice
{
///
/// noticeId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string noticeId { get; set; }
///
/// title
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? title { get; set; }
///
/// sign
///
[SugarColumn(IsNullable = true)]
public string? sign { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
}
}