using System; using System.Collections.Generic; using Abp.AutoMapper; using Castle.MicroKernel.Registration; using IwbZero.AppServiceBase; namespace WeOnlineApp.Question.Dto { [AutoMapTo(typeof(QuestionAnswerInfo)),AutoMapFrom(typeof(QuestionAnswerInfo))] public class AnswerDto: IwbEntityDto { public string AnswerNo { get; set; } public string QuestionNo { get; set; } /// /// 答案状态 /// public int? AnswerState { get; set; } /// /// 回答内容 /// public string ContentInfo { get; set; } public int ChildrenCount { get; set; } public string UserName { get; set; } public string RealName { get; set; } public string ImagePath { get; set; } public DateTime CreationTime { get; set; } } public class QueryChildAnswerDto { public string AnswerNo { get; set; } public string QuestionNo { get; set; } public int? Skip { get; set; } public int? Take { get; set; } } }