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