32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using CPRNIMS.Infrastructure.Entities.Items;
|
|
using CPRNIMS.Infrastructure.Entities.Purchasing;
|
|
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("InventTransDetail")]
|
|
public class InventTransDetail
|
|
{
|
|
[Key]
|
|
public long InventTransDetailId { get; set; }
|
|
public int InventTransId { get; set; }
|
|
public byte TransTypeId { get; set; }
|
|
public long RRDetailId { get; set; }
|
|
public decimal QtyIn { get; set; }
|
|
public decimal QtyOut { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string? Remarks { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public long PRDetailId { get; set; }
|
|
public PRDetails? PRDetails { get; set; }
|
|
public ItemCategory? ItemCategory { get; set; }
|
|
public InventTrans? InventTrans { get; set; }
|
|
}
|
|
}
|