This commit is contained in:
Putoo
2026-06-04 18:25:31 +08:00
parent 8b8eb732ae
commit 1a1f12abf5
20 changed files with 772 additions and 18 deletions

View File

@@ -0,0 +1,33 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_online_time
{
/// <summary>
/// userId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
/// <summary>
/// dayTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? dayTime { get; set; }
/// <summary>
/// monthTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? monthTime { get; set; }
/// <summary>
/// totalTime
/// </summary>
[SugarColumn(IsNullable = true)]
public long? totalTime { get; set; }
}
}

View File

@@ -0,0 +1,30 @@
namespace Application.Domain.Entity;
public class CheckTowerNeed
{
private bool _result;
public bool result
{ get { return this._result; } set { this._result = value; } }
private System.Int32 _isDeal;
/// <summary>
/// 0不可交易1可交易
/// </summary>
public System.Int32 isDeal
{ get { return this._isDeal; } set { this._isDeal = value; } }
private System.Int32 _isGive;
/// <summary>
/// 0不可交易1可交易
/// </summary>
public System.Int32 isGive
{ get { return this._isGive; } set { this._isGive = value; } }
private List<TowerNeed> _Needs;
public List<TowerNeed> Needs
{ get { return this._Needs; } set { this._Needs = value; } }
}

View File

@@ -0,0 +1,9 @@
namespace Application.Domain.Entity;
public class MapEventData
{
public int minCount { get; set; }
public int maxCount { get; set;}
public string tips { get; set; }
public string offSetTips { get; set; }
}

View File

@@ -0,0 +1,60 @@
namespace Application.Domain.Entity;
public class TowerNeed
{
private System.String _code;
/// <summary>
///
/// </summary>
public System.String code
{ get { return this._code; } set { this._code = value; } }
private System.String _name;
/// <summary>
///
/// </summary>
public System.String name
{ get { return this._name; } set { this._name = value; } }
private System.String _parameter;
/// <summary>
///
/// </summary>
public System.String parameter
{ get { return this._parameter; } set { this._parameter = value; } }
private System.Int32 _count;
/// <summary>
///
/// </summary>
public System.Int32 count
{ get { return this._count; } set { this._count = value; } }
private System.Int32 _retCount;
/// <summary>
///
/// </summary>
public System.Int32 retCount
{ get { return this._retCount; } set { this._retCount = value; } }
private System.Int32 _isOp;
/// <summary>
///
/// </summary>
public System.Int32 isOp
{ get { return this._isOp; } set { this._isOp = value; } }
private System.Int32 _isAsk;
/// <summary>
///
/// </summary>
public System.Int32 isAsk
{ get { return this._isAsk; } set { this._isAsk = value; } }
}

View File

@@ -0,0 +1,69 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_city_map_bus
{
/// <summary>
/// busId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int busId { get; set; }
/// <summary>
/// busCode
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? busCode { get; set; }
/// <summary>
/// busName
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? busName { get; set; }
/// <summary>
/// busType
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? busType { get; set; }
/// <summary>
/// bus_s
/// </summary>
[SugarColumn(IsNullable = true)]
public int? bus_s { get; set; }
/// <summary>
/// bus_e
/// </summary>
[SugarColumn(IsNullable = true)]
public int? bus_e { get; set; }
/// <summary>
/// bus_l
/// </summary>
[SugarColumn(IsNullable = true)]
public int? bus_l { get; set; }
/// <summary>
/// busTips
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? busTips { get; set; }
/// <summary>
/// busNeed
/// </summary>
[SugarColumn(IsNullable = true)]
public string? busNeed { get; set; }
/// <summary>
/// busContent
/// </summary>
[SugarColumn(IsNullable = true)]
public string? busContent { get; set; }
}
}

View File

@@ -0,0 +1,33 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_city_map_event
{
/// <summary>
/// evId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int evId { get; set; }
/// <summary>
/// evType
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? evType { get; set; }
/// <summary>
/// eventData
/// </summary>
[SugarColumn(IsNullable = true)]
public string? eventData { get; set; }
/// <summary>
/// offsetData
/// </summary>
[SugarColumn(IsNullable = true)]
public string? offsetData { get; set; }
}
}