25 lines
712 B
C#
25 lines
712 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 byte LotTypeId { get; set; }
|
|
public string? UserId { get; set; }
|
|
public LotType? LotType { get; set; }
|
|
}
|
|
}
|