PageReq.cs 331 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 namespace Hh.Mes.Common.Request { public class PageReq { public int page { get; set; } public int limit { get; set; } public string field { get; set; } public string order { get; set; } public PageReq() { page = 1; limit = 1000; } } }