using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; /// /// 预约人员问卷题目子答案 /// public partial class QuestionRegisterAnswerChild { /// /// 主键 /// public Guid QuestionRegisterAnswerChildId { get; set; } /// /// 答案ID /// public Guid QuestionRegisterAnswerId { get; set; } /// /// 自填写内容 /// public string? Content { get; set; } public DateTime CreationTime { get; set; } public Guid CreatorId { get; set; } public DateTime LastModificationTime { get; set; } public Guid LastModifierId { get; set; } public string? ConcurrencyStamp { get; set; } public virtual QuestionRegisterAnswer QuestionRegisterAnswer { get; set; } = null!; }