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.
 
 
 

26 lines
613 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.WebPeis.QuestionRegisters
{
public class QuestionRegisterDto
{
/// <summary>
/// 主键
/// </summary>
public Guid QuestionRegisterId { get; set; }
/// <summary>
/// 人员ID
/// </summary>
public Guid PersonId { get; set; }
/// <summary>
/// 登记的问卷项目
/// </summary>
public virtual ICollection<QuestionRegisterItemDto> QuestionRegisterItems { get; set; } = new List<QuestionRegisterItemDto>();
}
}