26 lines
559 B
C#
26 lines
559 B
C#
using KonSoft.Admin.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace KonSoft.Admin.Dtos
|
|
{
|
|
public class OrderPagedResultRequestDto : PagedResultRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 订单状态
|
|
/// </summary>
|
|
public OrderStatus Status { get; set; } = OrderStatus.Created;
|
|
|
|
/// <summary>
|
|
/// 服务时间
|
|
/// </summary>
|
|
public DateTime? ServiceTime { get; set; }
|
|
|
|
|
|
}
|
|
}
|