|
@@ -33,10 +33,6 @@ namespace Hotline.Share.Dtos.Knowledge
|
|
|
/// </summary>
|
|
|
public class AddKnowledgeDto : KnowledgeDto
|
|
|
{
|
|
|
- /// <summary>
|
|
|
- /// 知识来源
|
|
|
- /// </summary>
|
|
|
- public string? Source { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 知识Code
|
|
@@ -142,10 +138,16 @@ namespace Hotline.Share.Dtos.Knowledge
|
|
|
/// </summary>
|
|
|
public class KnowledgeDto : KnowledgeBaseDto
|
|
|
{
|
|
|
- /// <summary>
|
|
|
- /// 知识分类
|
|
|
- /// </summary>
|
|
|
- public List<KnowledgeRelationTypeDto> KnowledgeType { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 知识来源
|
|
|
+ /// </summary>
|
|
|
+ public string? Source { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 知识分类
|
|
|
+ /// </summary>
|
|
|
+ public List<KnowledgeRelationTypeDto> KnowledgeType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 知识分类名称
|
|
@@ -273,11 +275,6 @@ namespace Hotline.Share.Dtos.Knowledge
|
|
|
|
|
|
public List<FileJson>? FileJson { get; set; }
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 来源
|
|
|
- /// </summary>
|
|
|
- public string? Source { get; set; }
|
|
|
-
|
|
|
}
|
|
|
|
|
|
public class KnowledgeBaseDto {
|