2024-05-20 14:56:49 +00:00
|
|
|
|
namespace langguanApi.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ReqPaing
|
|
|
|
|
|
{
|
|
|
|
|
|
public int pageSize { get; set; } = 10;
|
|
|
|
|
|
public int current { get; set; } = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
public class reqpage : ReqPaing
|
|
|
|
|
|
{
|
2024-05-22 15:01:28 +00:00
|
|
|
|
public string key { get; set; } = "";
|
2024-05-20 14:56:49 +00:00
|
|
|
|
}
|
2024-07-24 09:51:53 +00:00
|
|
|
|
|
|
|
|
|
|
public class transportReqPage : ReqPaing
|
|
|
|
|
|
{
|
|
|
|
|
|
//开始时间
|
|
|
|
|
|
public string startTime { get; set; } = "";
|
|
|
|
|
|
//结束时间
|
|
|
|
|
|
public string endTime { get; set; } = "";
|
|
|
|
|
|
}
|
2024-05-20 14:56:49 +00:00
|
|
|
|
}
|