fix:修改默认图片渲染宽度高度

This commit is contained in:
2025-03-19 10:50:30 +08:00
parent d3e775b720
commit da5c10b632
4 changed files with 21 additions and 21 deletions

View File

@@ -46,14 +46,14 @@ public class ReceiptPrintRequest implements Serializable {
private String templateFillData;
/**
* 小票渲染宽度默认为600
* 小票渲染宽度默认为690
*/
private Integer width = 600;
private Integer width = 690;
/**
* 生成的模板的高度,默认为:950
* 生成的模板的高度,默认为:1200
*/
private Integer height = 950;
private Integer height = 1200;
}