upd: 修改订单与家政人员接口

This commit is contained in:
于鹏
2025-10-26 10:43:03 +08:00
parent eb8e9c3a8a
commit 4eac47edfa
10 changed files with 497 additions and 118 deletions

View File

@ -0,0 +1,25 @@
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; }
}
}