NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/Approved.cs
2026-02-16 16:37:20 +08:00

22 lines
573 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("Approved")]
public class Approved
{
[Key]
public long ApprovedId { get; set; }
public long PRDetailsId { get; set; }
public string? ApprovedBy { get; set; }
public byte ApproverId { get; set; }
public long PRNo { get; set; }
}
}