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

19 lines
523 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.PO
{
public class PRItemList
{
public List<long>? PRDetailsId { get; set; }
public List<long>? PRNo{ get; set; }
public List<decimal>? Quantity { get; set; }
public List<decimal>? UnitPrice { get; set; }
public List<decimal>? Amount { get; set; }
public List<string>? Specification { get; set; }
}
}