27 lines
793 B
C#
27 lines
793 B
C#
using CPRNIMS.Infrastructure.Models.Account;
|
|
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;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Purchasing
|
|
{
|
|
[Table("PR")]
|
|
public class PR
|
|
{
|
|
[Key]
|
|
public long PRId { get; set; }
|
|
public long PRNo { get; set; }
|
|
public string? NewPRNo { get; set; }
|
|
//public long ItemCodeId { get; set; }
|
|
public long ItemCartId { get; set; }
|
|
public string? UserId { get; set; }
|
|
public int ItemCount { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|