1111
This commit is contained in:
@@ -10,8 +10,4 @@
|
||||
<ProjectReference Include="..\Application.Service.Pub\Application.Service.Pub.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="game\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
69
Service/Application.Domain.Entity/game/game/game_chat.cs
Normal file
69
Service/Application.Domain.Entity/game/game/game_chat.cs
Normal file
@@ -0,0 +1,69 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Game")]
|
||||
public class game_chat
|
||||
{
|
||||
/// <summary>
|
||||
/// chatId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
||||
public string chatId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// code
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// areaId
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? areaId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// userId
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? userId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// par
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? par { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sign
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 255, IsNullable = true)]
|
||||
public string? sign { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// addTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? addTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sort
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? sort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// delTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? delTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// state
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? state { get; set; }
|
||||
}
|
||||
}
|
||||
11
Service/Application.Domain.Entity/model/UserModel.cs
Normal file
11
Service/Application.Domain.Entity/model/UserModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class UserModel
|
||||
{
|
||||
public string userNo { get; set; }
|
||||
public string nick { get; set; }
|
||||
public string sex { get; set; }
|
||||
public string headImg { get; set; }
|
||||
public int area { get; set; }
|
||||
public string icon { get; set; }
|
||||
}
|
||||
8
Service/Application.Domain.Entity/view/GameChatView.cs
Normal file
8
Service/Application.Domain.Entity/view/GameChatView.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class GameChatView
|
||||
{
|
||||
public game_chat chat { get; set; }
|
||||
public UserModel user { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user