NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/ProjectCodes.cs
2026-02-12 10:41:44 +08:00

23 lines
641 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.Purchasing
{
[Table("ProjectCodes")]
public class ProjectCodes
{
[Key]
public int ProjectCodeId { get; set; }
public string? ProjectCode { get; set; }
public string? ProjectName { get; set; }
public int MaxDays { get; set; }
public string? DeliveryAddress { get; set; }
public bool IsActive { get; set; }
}
}