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

30 lines
990 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
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.Items
{
[Table("ItemCode")]
public class ItemCode : CommonProperties
{
[Key]
public long ItemCodeId { get; set; }
public string? Department { get; set; }
public string? ItemCategoryName { get; set; }
public string? ItemName { get; set; }
public string? ItemDescription { get; set; }
public string? StatusName { get; set; }
public short Status { get; set; }
public byte RequestTypeId { get; set; }
public bool IsActive { get; set; }
public int CartItemCount { get; set; }
public short ItemCategoryId { get; set; }
public ItemCategory? ItemCategory { get; set; }
}
}