This commit is contained in:
Putoo
2026-05-29 19:06:51 +08:00
parent 69ae1e3174
commit bd1535aee9
48 changed files with 1571 additions and 133 deletions

View File

@@ -0,0 +1,8 @@
namespace Application.Domain.Entity;
public class MsgEventBtn
{
public int status { get; set; }
public string name { get; set; }
public string tips { get; set; }
}

View File

@@ -0,0 +1,36 @@
namespace Application.Domain.Entity;
public class TowerGet
{
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 long _count;
/// <summary>
///
/// </summary>
public long count
{ get { return this._count; } set { this._count = value; } }
}

View File

@@ -8,4 +8,5 @@ public class UserModel
public string headImg { get; set; }
public int area { get; set; }
public string icon { get; set; }
public int lev { get; set; }
}

View File

@@ -0,0 +1,10 @@
namespace Application.Domain.Entity;
public class UserOnMap
{
public string mapId { get; set; }
public string mapName { get; set; }
public int cityId { get; set; }
public string cityName { get; set; }
public int isOnline { get; set; }
}