13 lines
566 B
C#
13 lines
566 B
C#
using CloudGaming.Repository.Game.Entities.App;
|
|
using CloudGaming.Api.Admin.ApplicationServices.Apps.App;
|
|
namespace CloudGaming.Api.Admin.Controllers.Apps.App;
|
|
|
|
/// <summary>
|
|
/// 用户消息表 控制器
|
|
/// </summary>
|
|
[ControllerDescriptor(MenuId = "请设置菜单Id 系统菜单表中查找,如果不设置不受权限保护!", DisplayName = "用户消息表")]
|
|
public class T_User_MessagesController(IServiceProvider serviceProvider)
|
|
: AdminGameControllerBase<T_User_MessagesService,T_User_Messages,int,T_User_Messages,T_User_Messages>(serviceProvider)
|
|
{
|
|
|
|
} |