LSFE/LSFE.Infrastructure/Dto/Maintenance/ProductTransactionDto.cs
2026-07-30 10:31:04 +08:00

24 lines
738 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto.Maintenance
{
public class ProductTransactionDto
{
public Guid ProductTransId { get; set; }
public int ProductId { get; set; }
public string? ProductName { get; set; }
public int DoctorId { get; set; }
public Guid MRRawPlanId { get; set; }
public DateOnly? AppointmentDate { get; set; }
public DateTime CreatedDate { get; set; }
public string? CreatedBy { get; set; }
public string? UserId { get; set; }
public bool IsActive { get; set; }
public string? ProductLink { get; set; }
}
}