using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace ApiTools.Core
|
{
|
/// <summary>
|
/// 查询渠道分页列表数据
|
/// </summary>
|
[Resource([EnumResourceController.UserServerChannel])]
|
public class GetChannelsQuery : PagedListQuery<GetChannelsQueryResult, GetChannelsQueryResultItem>
|
{
|
}
|
|
/// <summary>
|
/// 查询渠道分页列表数据
|
/// </summary>
|
public class GetChannelsQueryResult : PagedListQueryResult<GetChannelsQueryResultItem>
|
{
|
|
}
|
|
/// <summary>
|
/// 查询渠道分页列表数据
|
/// </summary>
|
public class GetChannelsQueryResultItem
|
{
|
/// <summary>
|
/// Id
|
/// </summary>
|
public Guid Id { get; set; }
|
|
/// <summary>
|
/// 编号
|
/// </summary>
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 是否禁用
|
/// </summary>
|
public bool IsDisabled { get; set; }
|
}
|
}
|