Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Dto/FlowComment/FlowCommentListQuery.cs
2023-03-13 15:00:34 +08:00

15 lines
280 B
C#

using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment;
[SuppressSniffer]
public class FlowCommentListQuery : PageInputBase
{
/// <summary>
/// 任务id.
/// </summary>
public string? taskId { get; set; }
}