mh_sms/APT.BaseData.Domain/ApiModel/Platform/Flow/FlowPageReq.cs
2024-04-12 16:50:28 +08:00

22 lines
388 B
C#

namespace APT.BaseData.Domain.ApiModel
{
public class PageReq
{
public int page { get; set; }
public int limit { get; set; }
public string key { get; set; }
public PageReq()
{
page = 1;
limit = 10;
}
}
public class FlowQueryFlowInstanceListReq : PageReq
{
public string type { get; set; }
}
}