This commit is contained in:
2026-06-29 15:10:32 +08:00
11 changed files with 242 additions and 17 deletions

View File

@ -374,6 +374,18 @@ namespace QYZH.InteractiveMagazine.WebApi.Controllers
return BaseResponse<bool>.Success(data);
}
/// <summary>
/// 回调接口-自动铺码, 书页铺码后回调接口,更新书页的点阵码
/// </summary>
/// <param name="bookPagePrintDto"></param>
/// <returns></returns>
[HttpPost, Route("page/callbackupdatepageno")]
[AllowAnonymous]
public async Task<BaseResponse<bool>> CallbackPageUpdatePageNo([FromBody] JournalPagePrintDto journalPagePrintDto)
{
var data = await JournalPageService.CallbackPageUpdatePageNo(journalPagePrintDto);
return BaseResponse<bool>.Success(data);
}
/// <summary>
/// 下载书籍页码点阵码PDF文件名称
/// </summary>

View File

@ -67,6 +67,6 @@
"DurationSeconds": 3600, //过期时间(秒)
"Endpoint": "oss-cn-beijing.aliyuncs.com",
"ProjectName": "InteractiveMagazine",
"Domain": "https://oss.test.qyzhjy.com/"
"Domain": "http://oss.test.qyzhjy.com/"
}
}