feat: 新增工作服务项目并调整部分接口路由

1. 新增QYZH.InteractiveMagazine.WorkService工作服务项目,包含队列消费者框架、Hangfire定时任务支持
2. 修复PetService中未定义FeedPetOutput变量的问题
3. 调整JournalController的路由前缀从api/icr改为api
4. 将工作服务项目添加到解决方案中
This commit is contained in:
glz
2026-06-11 18:01:07 +08:00
parent e493c85d08
commit 4142b621c3
12 changed files with 433 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace QYZH.InteractiveMagazine.WebApi.Controllers
/// 期刊管理
/// </summary>
[ApiExplorerSettings(GroupName = nameof(ApiVersionEnum.Platform))]
[Route("api/icr")]
[Route("api")]
public class JournalController(
OssService ossService,
IJournalCatalogService JournalCatalogService,