NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Inventory/Lot.cs
2026-01-20 07:44:30 +08:00

25 lines
715 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
using CPRNIMS.Infrastructure.Models.Account;
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("Lot")]
public class Lot : CommonProperties
{
[Key]
public int LotId { get; set; }
public int InventoryId { get; set; }
public string? LotName { get; set; }
public string? LotTypeName { get; set; }
public byte LotTypeId { get; set; }
public string? UserId { get; set; }
}
}