154 lines
5.8 KiB
C#
154 lines
5.8 KiB
C#
using CloudBuilder.Core.Authorization;
|
|
using CloudBuilder.Core.DatabaseAccessor.Entity;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace CloudBuilder.AI.Entity
|
|
{
|
|
[TypeScript]
|
|
[Table("ai_sentence_view")]
|
|
public class AiSentenceViewEntity : ViewEntityBase
|
|
{
|
|
|
|
public AiSentenceViewEntity()
|
|
{
|
|
}
|
|
|
|
[Column("created_datetime")]
|
|
public DateTime CreatedDatetime { get; set; }
|
|
[Column("created_by")]
|
|
public string CreatedBy { get; set; }
|
|
[Column("updated_datetime")]
|
|
public DateTime UpdatedDatetime { get; set; }
|
|
[Column("updated_by")]
|
|
public string UpdatedBy { get; set; }
|
|
[Column("book_id")]
|
|
public string BookId { get; set; }
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[Column("sentence_id")]
|
|
public long SentenceId { get; set; }
|
|
[Column("sentiment")]
|
|
public string? Sentiment { get; set; }
|
|
[Column("content")]
|
|
public string Content { get; set; }
|
|
[Column("status")]
|
|
public string? Status { get; set; }
|
|
[Column("chapter_id")]
|
|
public int ChapterId { get; set; }
|
|
[Column("paragraph_id")]
|
|
public long ParagraphId { get; set; }
|
|
[Column("sentence_index")]
|
|
public int SentenceIndex { get; set; }
|
|
[Column("dialogue_indc")]
|
|
public string DialogueIndc { get; set; }
|
|
[Column("person_name")]
|
|
public string? PersonName { get; set; }
|
|
[Column("gender")]
|
|
public string? Gender { get; set; }
|
|
|
|
public const string CREATED_DATETIME = "CreatedDatetime";
|
|
public const string CREATED_BY = "CreatedBy";
|
|
public const string UPDATED_DATETIME = "UpdatedDatetime";
|
|
public const string UPDATED_BY = "UpdatedBy";
|
|
public const string BOOK_ID = "BookId";
|
|
public const string SENTENCE_ID = "SentenceId";
|
|
public const string SENTIMENT = "Sentiment";
|
|
public const string CONTENT = "Content";
|
|
public const string STATUS = "Status";
|
|
public const string CHAPTER_ID = "ChapterId";
|
|
public const string PARAGRAPH_ID = "ParagraphId";
|
|
public const string SENTENCE_INDEX = "SentenceIndex";
|
|
public const string DIALOGUE_INDC = "DialogueIndc";
|
|
public const string PERSON_NAME = "PersonName";
|
|
public const string GENDER = "Gender";
|
|
|
|
public const string DB_NAME_AI_SENTENCE_VIEW = "ai_sentence_view";
|
|
public const string DB_NAME_FIELDS="created_datetime,created_by,updated_datetime,updated_by,book_id,sentence_id,sentiment,content,status,chapter_id,paragraph_id,sentence_index,dialogue_indc,person_name,gender";
|
|
|
|
public const string DB_CREATED_DATETIME = "created_datetime";
|
|
public const string DB_CREATED_BY = "created_by";
|
|
public const string DB_UPDATED_DATETIME = "updated_datetime";
|
|
public const string DB_UPDATED_BY = "updated_by";
|
|
public const string DB_BOOK_ID = "book_id";
|
|
public const string DB_SENTENCE_ID = "sentence_id";
|
|
public const string DB_SENTIMENT = "sentiment";
|
|
public const string DB_CONTENT = "content";
|
|
public const string DB_STATUS = "status";
|
|
public const string DB_CHAPTER_ID = "chapter_id";
|
|
public const string DB_PARAGRAPH_ID = "paragraph_id";
|
|
public const string DB_SENTENCE_INDEX = "sentence_index";
|
|
public const string DB_DIALOGUE_INDC = "dialogue_indc";
|
|
public const string DB_PERSON_NAME = "person_name";
|
|
public const string DB_GENDER = "gender";
|
|
|
|
|
|
public static AiSentenceViewEntity GetInstance()
|
|
{
|
|
return new AiSentenceViewEntity();
|
|
}
|
|
|
|
public virtual void CopyFrom(AiSentenceViewEntity source)
|
|
{
|
|
CopyFrom(source, true);
|
|
}
|
|
|
|
public virtual void CopyFrom(AiSentenceViewEntity source, bool includeSystemFields)
|
|
{
|
|
if (source == null)
|
|
{
|
|
throw new NullReferenceException("Source entity is null.");
|
|
}
|
|
|
|
this.CreatedDatetime = source.CreatedDatetime;
|
|
this.CreatedBy = source.CreatedBy;
|
|
this.UpdatedDatetime = source.UpdatedDatetime;
|
|
this.UpdatedBy = source.UpdatedBy;
|
|
this.BookId = source.BookId;
|
|
this.SentenceId = source.SentenceId;
|
|
this.Sentiment = source.Sentiment;
|
|
this.Content = source.Content;
|
|
this.Status = source.Status;
|
|
this.ChapterId = source.ChapterId;
|
|
this.ParagraphId = source.ParagraphId;
|
|
this.SentenceIndex = source.SentenceIndex;
|
|
this.DialogueIndc = source.DialogueIndc;
|
|
this.PersonName = source.PersonName;
|
|
this.Gender = source.Gender;
|
|
|
|
if (includeSystemFields)
|
|
{
|
|
this.CreatedDatetime = source.CreatedDatetime;
|
|
this.CreatedBy = source.CreatedBy;
|
|
this.UpdatedDatetime = source.UpdatedDatetime;
|
|
this.UpdatedBy = source.UpdatedBy;
|
|
}
|
|
}
|
|
|
|
public override string GetSelectFrom()
|
|
{
|
|
return $" select {DB_NAME_FIELDS} from { DB_NAME_AI_SENTENCE_VIEW} with(nolock) ";
|
|
}
|
|
|
|
public override string GetSelectCountFrom(string sqlWhere)
|
|
{
|
|
return $" select count(*) from { DB_NAME_AI_SENTENCE_VIEW} with(nolock) where 1=1 {sqlWhere}";
|
|
}
|
|
|
|
public override string GetSelectTopFrom(int limit, int start,string orderby,string orderbytag, string sqlWhere)
|
|
{
|
|
if (string.IsNullOrEmpty(orderbytag) || orderbytag.Trim() != "desc") orderbytag = "asc";
|
|
|
|
if (string.IsNullOrEmpty(orderby) || !DB_NAME_FIELDS.Contains(orderby)) orderby = DB_CREATED_DATETIME ; string top = limit > 0 ? $"top {limit}" : "";
|
|
return $" select {top} {DB_NAME_FIELDS} from (select {DB_NAME_FIELDS} ,row_number() over(order by {orderby} {orderbytag}) as num from { DB_NAME_AI_SENTENCE_VIEW} with(nolock) where 1=1 {sqlWhere} ) a where num> {limit * (start - 1)}";
|
|
}
|
|
|
|
public AiSentenceViewEntity Clone()
|
|
{
|
|
AiSentenceViewEntity result = new AiSentenceViewEntity();
|
|
result.CopyFrom(this);
|
|
|
|
return result;
|
|
}
|
|
|
|
}
|
|
}
|