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

22 lines
624 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.PO
{
public class PRPOSummaryCount
{
[Key]
public string? Department { get; set; }
public int PRItemCount { get; set; }
public int POItemCount { get; set; }
public int RRItemCount { get; set; }
public int WOPOItemCount { get; set; }
public string? POCompletionPercent { get; set; }
public string? RRCompletionPercent { get; set; }
}
}