mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 08:26:37 +08:00
25 lines
554 B
C#
25 lines
554 B
C#
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Chat;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图片任务分页查询输入
|
|||
|
|
/// </summary>
|
|||
|
|
public class ImageTaskPageInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 页码(从1开始)
|
|||
|
|
/// </summary>
|
|||
|
|
public int PageIndex { get; set; } = 1;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 每页数量
|
|||
|
|
/// </summary>
|
|||
|
|
public int PageSize { get; set; } = 10;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务状态筛选(可选)
|
|||
|
|
/// </summary>
|
|||
|
|
public TaskStatusEnum? TaskStatus { get; set; }
|
|||
|
|
}
|