27 lines
835 B
C#
27 lines
835 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 LSFE.Infrastructure.Entities.Maintenance
|
|
{
|
|
[Table("ProductTransaction")]
|
|
public class ProductTransaction
|
|
{
|
|
[Key]
|
|
public Guid ProductTransId { get; set; }
|
|
public int ProductId { get; set; }
|
|
public string? ProductName { get; set; }
|
|
public int DoctorId { get; set; }
|
|
public Guid MRRawPlanId { get; set; }
|
|
public DateOnly AppointmentDate { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public string? UserId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|