27 lines
759 B
C#
27 lines
759 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("TrialExperience")]
|
|
public partial class TrialExperience : Entity, IAuditUpdate, IAuditAdd
|
|
{
|
|
public Guid DoctorId { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Term { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string EvaluationCriteria { get; set; }
|
|
|
|
[StringLength(512)]
|
|
public string EvaluationContent { get; set; }
|
|
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime CreateTime { get; set; } = DateTime.Now;
|
|
public Guid UpdateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
}
|