using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace WeApp.BasicInfo.PhoneQuestion.Dto { /// /// 电话提问维护 /// [AutoMapTo(typeof(PhoneQuestionInfo)),AutoMapFrom(typeof(PhoneQuestionInfo))] public class PhoneQuestionDto: EntityDto { /// /// 简称 /// public string Name { get; set; } /// /// 内容 /// public string Content { get; set; } public int Type { get; set; } /// /// 内容 /// public string Tag { get; set; } } }