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