20 lines
456 B
C#
20 lines
456 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("医生 - 假期安排")]
|
|
[Table("Vacation")]
|
|
public class Vacation : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
public Guid DoctorId { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
public int Status { get; set; } = 1;
|
|
|
|
}
|