111
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user