feat(printer): 添加自定义打印图片URL功能

- 在CreateVirtualOrderRequest中新增printImgUrl字段
- 修改createVirtualOrder方法支持自定义打印图片URL参数
- 实现当提供printImgUrl时优先使用该URL进行打印
- 更新服务接口和实现类以支持新的参数传递
- 添加相应的文档注释说明新功能特性
This commit is contained in:
2026-01-16 18:30:39 +08:00
parent 83c831887e
commit 830dd17071
4 changed files with 27 additions and 3 deletions

View File

@@ -26,4 +26,9 @@ public class CreateVirtualOrderRequest {
* 是否需要图像增强(可选,默认不增强)
*/
private Boolean needEnhance;
/**
* 打印图片URL(可选,如果提供则使用此URL进行打印)
*/
private String printImgUrl;
}