照片打印

This commit is contained in:
2025-05-22 10:43:26 +08:00
parent 9b00b34a68
commit 937c2b33d3
12 changed files with 306 additions and 7 deletions

View File

@@ -13,6 +13,7 @@ public class MemberPrintResp {
private String origUrl;
private String cropUrl;
private Integer quantity;
private Integer printerId;
private Long orderId;
private Integer status;
private Date createTime;

View File

@@ -0,0 +1,10 @@
package com.ycwl.basic.model.printer.req;
import lombok.Data;
import java.util.List;
@Data
public class FromSourceReq {
List<Long> ids;
}