28 lines
808 B
C#
28 lines
808 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.PO
|
|
{
|
|
[Table("PO")]
|
|
public class PO
|
|
{
|
|
[Key]
|
|
public long POId { get; set; }
|
|
public string PONo { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public bool IsPOClosed { get; set; }
|
|
public bool IsCancel { get; set; }
|
|
public string? UserId { get; set; }
|
|
public byte Status { get; set; }
|
|
public byte PaymentTermsId { get; set; }
|
|
public byte PODId { get; set; }
|
|
public byte POTypeId { get; set; }
|
|
public string? PreparedBy { get; set; }
|
|
}
|
|
}
|