修改
This commit is contained in:
@ -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>
|
||||
|
||||
@ -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/"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user