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
    {
        /// 
        /// 订单状态
        /// 
        public OrderStatus Status { get; set; } = OrderStatus.Created;
        /// 
        /// 服务时间
        /// 
        public DateTime? ServiceTime { get;  set; }
    }
}