NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Common/Dashboard.cs
2026-01-20 07:44:30 +08:00

25 lines
758 B
C#

using CPRNIMS.Infrastructure.Entities.PO;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Common
{
public class Dashboard
{
public byte DashboardId { get; set; }
public int ForCanvassItem { get; set; }
public int WOSupResponseCount { get; set; }
public int PRNoCount { get; set; }
public int ForApprover1 { get; set; }
public int ForApprover2 { get; set; }
public int ForPOApproval { get; set; }
public int ForPO { get; set; }
public int ForPayment { get; set; }
public int ForDelivery { get; set; }
}
}