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; } } }