1111
This commit is contained in:
8
Service/Application.Domain.Entity/model/MsgEventBtn.cs
Normal file
8
Service/Application.Domain.Entity/model/MsgEventBtn.cs
Normal 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; }
|
||||
}
|
||||
36
Service/Application.Domain.Entity/model/TowerGet.cs
Normal file
36
Service/Application.Domain.Entity/model/TowerGet.cs
Normal 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; } }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
10
Service/Application.Domain.Entity/model/UserOnMap.cs
Normal file
10
Service/Application.Domain.Entity/model/UserOnMap.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user