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

24 lines
682 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Canvass
{
[Table("RFQ")]
public class RFQ
{
public int Id { get; set; }
public string? Token { get; set; }
public decimal Qty { get; set; }
public decimal Price { get; set; }
public string? Remarks { get; set; }
public string? EmailAddress { get; set; }
public string? Manufacturer { get; set; }
public DateTime CommitmentDate { get; set; }
public bool IsActive { get; set; }
}
}