using System; using System.Collections.Generic; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace WePlatform.WeLib.Knowledge.Dto { /// /// 知识信息引导库管理 /// [AutoMapTo(typeof(KnowledgeInfo)),AutoMapFrom(typeof(KnowledgeInfo))] public class KnowledgeDto: EntityDto { /// /// 知识名称 /// public string Name { get; set; } /// /// 知识详情 /// public string Description { get; set; } public List Plans { get; set; } } }