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

28 lines
891 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Entities.Planning
{
[Table("InventoryTransaction")]
public class InventoryTransaction : BaseEntity
{
public Guid InventoryTransId { get; set; }
public string? Description { get; set; }
public int QtyIn { get; set; }
public byte IconEmojiId { get; set; }
public Guid InventoryId { get; set; }
public Guid MRRawPlanId { get; set; }
public int DoctorId { get; set; }
public DateTime AppointmentDate { get; set; }
public int QtyOut { get; set; }
public string? UserId { get; set; }
public string? CreatedBy { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? UpdatedDate { get; set; }
}
}