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