13 lines
550 B
C#
13 lines
550 B
C#
using CloudGaming.Repository.Game.Entities.Ext;
|
|
using CloudGaming.Api.Admin.ApplicationServices.Apps.Ext;
|
|
namespace CloudGaming.Api.Admin.Controllers.Apps.Ext;
|
|
|
|
/// <summary>
|
|
/// app渠道表 控制器
|
|
/// </summary>
|
|
[ControllerDescriptor(MenuId = "请设置菜单Id 系统菜单表中查找,如果不设置不受权限保护!", DisplayName = "app渠道表")]
|
|
public class T_App_ChannelController(IServiceProvider serviceProvider)
|
|
: AdminGameControllerBase<T_App_ChannelService,T_App_Channel,int,T_App_Channel,T_App_Channel>(serviceProvider)
|
|
{
|
|
|
|
} |