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

33 lines
1.1 KiB
C#

using LSFE.Infrastructure.Model;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Entities.Maintenance
{
[Table("InventoryTransaction")]
public class InventoryTransaction
{
[Key]
public Guid InventoryTransId { get; set; }
public Guid InventoryId { get; set; }
public Guid MRRawPlanId { get; set; }
public int DoctorId { get; set; }
public string? Description { get; set; }
public DateOnly? AppointmentDate { get; set; }
public DateTime CreatedDate { get; set; }
public int QtyIn { get; set; }
public int QtyOut { get; set; }
public string? UserId { get; set; }
public string? CreatedBy { get; set; }
public bool IsActive { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? UpdatedDate { get; set; }
public byte IconEmojiId { get; set; }
}
}