This commit is contained in:
Putoo
2026-07-02 18:52:36 +08:00
parent 7ce9787172
commit 5eb0bfd792
4 changed files with 310 additions and 0 deletions

View File

@@ -0,0 +1,117 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Log")]
public class game_fight_data
{
/// <summary>
/// fightId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string fightId { get; set; }
/// <summary>
/// 作用区域
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? areaCode { get; set; }
/// <summary>
/// 关联ID
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? keyId { get; set; }
/// <summary>
/// 对方主ID
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? mainId { get; set; }
/// <summary>
/// 战斗类型
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
/// <summary>
/// 场景
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? scene { get; set; }
/// <summary>
/// mapId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapId { get; set; }
/// <summary>
/// userId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
/// <summary>
/// state
/// </summary>
[SugarColumn(IsNullable = true)]
public int? state { get; set; }
/// <summary>
/// 胜利方
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? winUser { get; set; }
/// <summary>
/// 经验
/// </summary>
[SugarColumn(IsNullable = true)]
public long? exp { get; set; }
/// <summary>
/// 铜贝
/// </summary>
[SugarColumn(IsNullable = true)]
public long? copper { get; set; }
/// <summary>
/// 宠物经验
/// </summary>
[SugarColumn(IsNullable = true)]
public long? petExp { get; set; }
/// <summary>
/// 奖励
/// </summary>
[SugarColumn(IsNullable = true)]
public string? award { get; set; }
/// <summary>
/// 伤害
/// </summary>
[SugarColumn(IsNullable = true)]
public long? harm { get; set; }
[SugarColumn(IsNullable = true)]
public string? pars { get; set; }
/// <summary>
/// addTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? addTime { get; set; }
/// <summary>
/// 战斗结束时间
/// </summary>
[SugarColumn(IsNullable = true)]
public long? okTime { get; set; }
/// <summary>
/// 删除时间
/// </summary>
[SugarColumn(IsNullable = true)]
public long? endTime { get; set; }
}
}