24 lines
696 B
C#
24 lines
696 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Planning
|
|
{
|
|
[Table("ProductTransaction")]
|
|
public class ProductTransaction : BaseEntity
|
|
{
|
|
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 DateTime AppointmentDate { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? ProductLink { get; set; }
|
|
}
|
|
}
|