NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Inventory/InventTrans.cs
2026-06-18 16:51:31 +08:00

25 lines
792 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 CPRNIMS.Infrastructure.Entities.Inventory
{
[Table("InventTrans")]
public class InventTrans
{
[Key]
public int InventTransId { get; set; }
public int InventoryId { get; set; }
public long RRNo { get; set; }
public string CreatedBy { get; set; }=string.Empty;
public bool IsActive { get; set; }
public Inventory? Inventory { get; set; }
// public InventTransDetail? InventTransDetail { get; set; }
public ICollection<InventTransDetail> InventTransDetails { get; set; } = [];
}
}