照片打印,基础

This commit is contained in:
2025-05-21 15:27:53 +08:00
parent 570267fd83
commit aaddbab2ab
7 changed files with 58 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.ycwl.basic.service.printer;
import com.ycwl.basic.model.mobile.order.PriceObj;
import com.ycwl.basic.model.pc.printer.entity.PrinterEntity;
import com.ycwl.basic.model.pc.printer.resp.MemberPrintResp;
import com.ycwl.basic.model.pc.printer.resp.PrinterResp;
@@ -38,4 +39,8 @@ public interface PrinterService {
MemberPrintResp getUserPhoto(Long memberId, Long scenicId, Long id);
int setPhotoCropped(Long memberId, Long scenicId, Long id, String url);
int setPhotoQuantity(Long memberId, Long scenicId, Long id, Integer quantity);
PriceObj queryPrice(Long memberId, Long scenicId);
}