| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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; }
-
- /// <summary>
- /// 答案状态
- /// </summary>
- public int? AnswerState { get; set; }
- /// <summary>
- /// 回答内容
- /// </summary>
- 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; }
- }
- }
|