32 lines
988 B
C#
32 lines
988 B
C#
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("Inventory")]
|
|
public class Inventory
|
|
{
|
|
[Key]
|
|
public Guid InventoryId { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? Description { get; set; }
|
|
public int QtyIn { get; set; }
|
|
public int QtyOut { get; set; }
|
|
public int QtyBalance { get; set; }
|
|
public byte CycleMonth { get; set; }
|
|
public int CycleYear { get; set; }
|
|
public string? MedRepName { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string? UpdatedBy { get; set; }
|
|
public DateTime? UpdatedDate { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|