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

28 lines
857 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.Common
{
public class IndexCard
{
[Key]
public long PODetailId { get; set; }
public DateTime PODate { get; set; }
public DateTime PRDate { get; set; }
public long PRNo { get; set; }
public string? RRDate { get; set; }
public long ItemNo { get; set; }
public decimal Quantity { get; set; }
public decimal UnitPrice { get; set; }
public string? ItemName { get; set; }
public string? Specification { get; set; }
public string? SupplierName { get; set; }
public string? PONo { get; set; }
public string? Remarks { get; set; }
}
}