10 lines
328 B
C#
10 lines
328 B
C#
namespace CloudGaming.Api.Admin.Controllers.Systems;
|
|
|
|
/// <summary>
|
|
/// 岗位控制器
|
|
/// </summary>
|
|
[ControllerDescriptor(MenuId = "20", DisplayName = "岗位")]
|
|
public class SysPostController(IServiceProvider serviceProvider)
|
|
: AdminControllerBase<SysPostService, SysPost, Guid, SysPost, SysPost>(serviceProvider)
|
|
{
|
|
} |