LSFE/LSFE.Infrastructure/Entities/Planning/MRPlanDetail.cs
2026-07-30 10:31:04 +08:00

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; }
}
}