You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
863 B
37 lines
863 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
/// <summary>
|
|
/// 预约人员问卷题目子答案
|
|
/// </summary>
|
|
public partial class QuestionRegisterAnswerChild
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid QuestionRegisterAnswerChildId { get; set; }
|
|
/// <summary>
|
|
/// 答案ID
|
|
/// </summary>
|
|
|
|
public Guid QuestionRegisterAnswerId { get; set; }
|
|
/// <summary>
|
|
/// 自填写内容
|
|
/// </summary>
|
|
|
|
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!;
|
|
}
|