Files
KonSoft.Clean/modules/admin/src/KonSoft.Admin.Application.Contracts/Dtos/OrderDto.cs
2025-10-16 10:30:51 +08:00

20 lines
619 B
C#

using System;
using KonSoft.Admin.Enums;
namespace KonSoft.Admin.Dtos;
public class OrderDto
{
public Guid Id { get; set; }
public string OrderSN { get; set; }
public Guid CustomerId { get; set; }
public Guid? WorkerId { get; set; }
public ServiceCategoryDto? ServiceCategory { get; set; }
public DateTime ServiceTime { get; set; }
public OrderStatus Status { get; set; }
public decimal Amount { get; set; }
public decimal PaidAmount { get; set; }
public string PaymentMethod { get; set; }
public AddressDto Address { get; set; }
public string Remark { get; set; }
}