28 lines
891 B
C#
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; }
|
|
}
|
|
}
|