You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
509 B
23 lines
509 B
using System;
|
|
|
|
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class QueryServiceOrderRequest : PlatformRequest
|
|
{
|
|
public string VenderId { get; set; }
|
|
|
|
public string ServiceId { get; set; }
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
public int? ServiceStatus { get; set; }
|
|
|
|
public DateTime? UpdateTimeBegin { get; set; }
|
|
|
|
public DateTime? UpdateTimeEnd { get; set; }
|
|
|
|
public int PageIndex { get; set; }
|
|
|
|
public int PageSize { get; set; }
|
|
}
|
|
}
|
|
|