23 lines
626 B
C#
23 lines
626 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.Planning
|
|
{
|
|
[Table("MRPlanDetails")]
|
|
public class MRPlanDetail
|
|
{
|
|
[Key]
|
|
public Guid MRPlanDetailId { get; set; }
|
|
public Guid MRPlanHeaderId { get; set; }
|
|
public byte MaxVisit { get; set; }
|
|
public int DoctorId { get; set; }
|
|
public int TerritoryId { get; set; }
|
|
public int DivisionId { get; set; }
|
|
}
|
|
}
|