21 lines
467 B
C#
21 lines
467 B
C#
namespace langguanApi.Model
|
|
{
|
|
public class ReqPaing
|
|
{
|
|
public int pageSize { get; set; } = 10;
|
|
public int current { get; set; } = 1;
|
|
}
|
|
public class reqpage : ReqPaing
|
|
{
|
|
public string key { get; set; } = "";
|
|
}
|
|
|
|
public class transportReqPage : ReqPaing
|
|
{
|
|
//开始时间
|
|
public string startTime { get; set; } = "";
|
|
//结束时间
|
|
public string endTime { get; set; } = "";
|
|
}
|
|
}
|