using Abp.AutoMapper; using IwbZero.AppServiceBase; using System.ComponentModel.DataAnnotations; namespace WeApp.BasicInfo.PhoneQuestion.Dto { [AutoMapTo(typeof(PhoneAnswerInfo)), AutoMapFrom(typeof(PhoneAnswerInfo))] public class PhoneAnswerDto : IwbEntityDto { /// /// 内容 /// [MaxLength(PhoneAnswerInfo.ContentMaxLength)] public string Content { get; set; } /// /// 关键字 /// [MaxLength(PhoneAnswerInfo.KeywordMaxLength)] public string Keywords { get; set; } /// /// 答案类型 /// public int Type { get; set; } /// /// 培训营 /// public string QuestionNo { get; set; } } }