临时数据提交

This commit is contained in:
2026-07-01 08:18:51 +08:00
33 changed files with 1659 additions and 523 deletions

View File

@ -120,8 +120,33 @@ namespace QYZH.InteractiveMagazine.Models.Dto.Journal
/// </summary>
public string? DownloadJournalPagePdfName { get; set; }
/// <summary>
/// 发布开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 发布结束时间
/// </summary>
public DateTime? EndTime { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
}
public class JournalPublishBookMessage
{
public long BookId { get; set; }
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
}
public class JournalPublishBookPageMessage
{
public long BookId { get; set; }
public long PageId { get; set; }
public string? PageNo { get; set; }
public string? Layout { get; set; }
}
}

View File

@ -69,6 +69,16 @@ namespace QYZH.InteractiveMagazine.Models.Dto.Journal
/// </summary>
public string? PdfPreviewUrl { get; set; }
/// <summary>
/// Desc:发布开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// Desc:发布结束时间
/// </summary>
public DateTime? EndTime { get; set; }
}
public partial class JournalEditDto: JournalAddDto
{

View File

@ -29,5 +29,10 @@ namespace QYZH.InteractiveMagazine.Models.Dto.Journal
/// </summary>
public TaskBankTypeEnum Type { get; set; }
/// <summary>
/// 是否需要AI批改默认需要
/// </summary>
public bool NeedAiProcess { get; set; } = true;
}
}

View File

@ -74,6 +74,11 @@ namespace QYZH.InteractiveMagazine.Models.Dto.Journal
/// Prompt配置
/// </summary>
public string Prompt { get; set; }
/// <summary>
/// 是否需要AI批改
/// </summary>
public bool NeedAiProcess { get; set; }
}
/// <summary>

View File

@ -71,6 +71,11 @@ namespace QYZH.InteractiveMagazine.Models.Dto.Journal
/// </summary>
public string Prompt { get; set; }
/// <summary>
/// 是否需要AI批改false时由人工批改
/// </summary>
public bool NeedAiProcess { get; set; } = true;
}
public class JournalPageTaskComplementInput