| 12345678910111213141516171819202122232425262728293031323334 |
- 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<int>
- {
- /// <summary>
- /// 内容
- /// </summary>
- [MaxLength(PhoneAnswerInfo.ContentMaxLength)]
- public string Content { get; set; }
- /// <summary>
- /// 关键字
- /// </summary>
- [MaxLength(PhoneAnswerInfo.KeywordMaxLength)]
- public string Keywords { get; set; }
- /// <summary>
- /// 答案类型
- /// </summary>
- public int Type { get; set; }
- /// <summary>
- /// 培训营
- /// </summary>
- public string QuestionNo { get; set; }
- }
- }
|