33 lines
744 B
C#
33 lines
744 B
C#
using CloudBuilder.AI.Entity;
|
|
using CloudBuilder.Core.Authorization;
|
|
using CloudBuilder.Security.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.AI.Data
|
|
{
|
|
/// <summary>
|
|
/// 排除实体类标记
|
|
/// </summary>
|
|
[NotMapped]
|
|
[TypeScript]
|
|
public class AiChapterDisplayData : AiChapterEntity
|
|
{
|
|
public const string CONTENT = "Content";
|
|
|
|
public AiChapterDisplayData()
|
|
{
|
|
}
|
|
public AiChapterDisplayData(AiChapterEntity entity)
|
|
{
|
|
CopyFrom(entity);
|
|
}
|
|
|
|
public string? Content { get; set; }
|
|
}
|
|
}
|