using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_monster_map
{
///
/// mmId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string mmId { get; set; }
///
/// mapId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapId { get; set; }
///
/// monsterId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? monsterId { get; set; }
///
/// monsterName
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? monsterName { get; set; }
///
/// addCount
///
[SugarColumn(IsNullable = true)]
public int? addCount { get; set; }
///
/// chance
///
[SugarColumn(IsNullable = true)]
public int? chance { get; set; }
///
/// sTime
///
[SugarColumn(IsNullable = true)]
public int? sTime { get; set; }
///
/// eTime
///
[SugarColumn(IsNullable = true)]
public int? eTime { get; set; }
}
}