121212
This commit is contained in:
39
Service/Application.Domain.Entity/game/game/game_magic.cs
Normal file
39
Service/Application.Domain.Entity/game/game/game_magic.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Game")]
|
||||
public class game_magic
|
||||
{
|
||||
/// <summary>
|
||||
/// userId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
||||
public string userId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// areaId
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? areaId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// time
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// isWin
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? isWin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// uptime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? uptime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -39,8 +39,8 @@ namespace Application.Domain.Entity
|
||||
/// <summary>
|
||||
/// attr
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 1000, IsNullable = true)]
|
||||
public string attr { get; set; }
|
||||
[SugarColumn(IsNullable = true, IsJson = true)]
|
||||
public List<AttrItem> attr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// count
|
||||
@@ -66,4 +66,4 @@ namespace Application.Domain.Entity
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? show { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,4 +5,5 @@ public class NpcBus
|
||||
public string code { get; set; }
|
||||
public string name { get; set; }
|
||||
public string url { get; set; }
|
||||
public string parms { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class RankAwardModel
|
||||
{
|
||||
public int min { get; set; }
|
||||
public int max { get; set; }
|
||||
public List<TowerGet> award { get; set; }
|
||||
}
|
||||
51
Service/Application.Domain.Entity/resource/game/game_cdk.cs
Normal file
51
Service/Application.Domain.Entity/resource/game/game_cdk.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Resource")]
|
||||
public class game_cdk
|
||||
{
|
||||
/// <summary>
|
||||
/// cdkId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public int cdkId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// area
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? area { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// cdkName
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 255, IsNullable = true)]
|
||||
public string? cdkName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// award
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true,IsJson = true)]
|
||||
public List<TowerGet> award { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// limit
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? limit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// addTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? addTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// endTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? endTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Resource")]
|
||||
public class game_cdk_item
|
||||
{
|
||||
/// <summary>
|
||||
/// ciId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
||||
public string ciId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// cdkId
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? cdkId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// userId
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? userId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// upTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? upTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -27,8 +27,8 @@ namespace Application.Domain.Entity
|
||||
/// <summary>
|
||||
/// attr
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 1000, IsNullable = true)]
|
||||
public string attr { get; set; }
|
||||
[SugarColumn(IsNullable = true, IsJson = true)]
|
||||
public List<AttrItem> attr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// remark
|
||||
@@ -36,4 +36,4 @@ namespace Application.Domain.Entity
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user