NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Purchasing/PRAttachments.cs
2026-02-12 10:41:44 +08:00

21 lines
545 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Purchasing
{
[Table("PRAttachments")]
public class PRAttachments
{
[Key]
public int PRAttachmentId { get; set; }
public long PRId { get; set; }
public string? FileName { get; set; }
public string? OrigFileName { get; set; }
}
}